#Containers ## Orchestration ### Kubernetes ### Podman Script ## Network ## Linux ### LXC ### Podman __Build a Slackware Container__ 1. Clone Vincent Batts Slackware container repository ``` git clone https://github.com/vbatts/slackware-container.git ``` 2. Build an image with the desired version and architecture. ``` cd slackware-container CRT=podman make ARCH=64 VERSION=current ``` 3. Import and tag the container ``` podman import slackware64-current.tar podman tag $user/slackware64-current:latest ``` ### Wolfi ## Onyx __Enable Docker__ ``` docker no shutdown ``` __Pull Image__ ``` docker pull ``` __Start Container__ ``` docker start latest now ``` __Enter Container__ ``` docker exec "bin/bash" ``` __Commit Container__ ``` docker commit latest ``` __Save Container__ ``` docker save latest ``` __Start a Privileged Container__ ``` docker start latest init privileged network ``` #### CentOS __Migrate from CentOS 8 to CentOS Stream__ ``` dnf --disablerepo '*' --enablerepo=extras swap centos-linux-repos centos-stream-repos dnf distro-sync ``` ## Build System podman build scripts