HON’s Wiki # Podman

Home / Containers

Contents

TODO

Setup

Podman 3

Using the CNI network library (which is rather buggy wrt. the features used by Podman).

Debian

  1. (Note) Debian 11, Ubuntu 20.10 etc. should have Podman in the main repos.
  2. Add Kubic repo (Ubuntu 20.04 and older):
    1. Install dependencies: apt install curl gnupg
    2. Get OS info: source /etc/os-release
    3. Add GPG key: curl -sSf https://download.opensuse.org/repositories/devel:kubic:libcontainers:stable/xUbuntu_${VERSION_ID}/Release.key | gpg --dearmor > /usr/share/keyrings/kubic-libcontainers-archive-keyring.gpg
    4. Add repo: echo "deb [signed-by=/usr/share/keyrings/kubic-libcontainers-archive-keyring.gpg] http://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/xUbuntu_${VERSION_ID}/ /" | tee /etc/apt/sources.list.d/kubic-libcontainers.list
  3. Install: apt install podman
  4. Enable auto-start:
    1. Enable: systemctl enable --now podman-restart.service
    2. (Note) The service is required to automatically start containers with restart=always on reboot.
  5. Verify install: podman info
  6. (Optional) Add Docker compat stuff:
    1. Set Docker executable link: ln -s /usr/bin/podman /usr/bin/docker
    2. Set Docket socket path: echo "DOCKER_HOST=unix:///run/podman/podman.sock" >> /etc/environment
    3. Set sudo to accept the socket path env var: echo "Defaults env_keep += \"DOCKER_HOST\"" >> /etc/sudoers.d/podman-compat

Arch

  1. Install: pacman -S podman
  2. (Optional) (TODO required?) Install hostname resolution between containers: pacman -S podman-dnsname
  3. (Optional) Add Docker compat stuff:
    1. Install: pacman -S podman-docker
    2. Quiet Docker emulation message: touch /etc/containers/nodocker

Bugs & Caveats

Podman 4 (from Source)

Using the crun container runtime, Netavark network library and Aardvark DNS (Netavark and Aardvark are new in Podman 4).

Since Podman 4, Netavark and Aardvark is not yet available in appropriate repos, so it’s build from source instead.

Warning: If you have any existing CNI networks, forcing Netavark will break those.

Debian

  1. Install Go and Rust.
    • Go is required to build Podman and Rust is required to build Netavark and Aardvark.
  2. Install dependencies and tools:
    • General: apt install btrfs-progs git go-md2man iptables libassuan-dev libbtrfs-dev libc6-dev libdevmapper-dev libglib2.0-dev libgpgme-dev libgpg-error-dev libprotobuf-dev libprotobuf-c-dev libseccomp-dev libselinux1-dev libsystemd-dev pkg-config uidmap libapparmor-dev dh-autoreconf
    • Special: apt install crun catatonit golang-github-containers-common golang-github-containers-image containers-storage buildah
  3. Install Podman (as normal user):
    1. Clone: git clone --branch=v4.0.2 https://github.com/containers/podman/ (example version)
    2. Enter: cd podman
    3. Build: make BUILDTAGS="apparmor exclude_graphdriver_devicemapper seccomp systemd"
    4. Install: sudo env PATH=$PATH make install install.completions PREFIX=/usr/local
    5. Set the network library: In /etc/containers/containers.conf, in the [network] section, set network_backend = "netavark".
    6. Set the storage driver: In /etc/containers/storage.conf, in the [storage] section, set driver = "overlay".
    7. Create the Podman lib dir: mkdir -p /usr/local/lib/podman
  4. Install Netavark (as normal user):
    1. Clone: git clone --branch=v1.0.2 https://github.com/containers/netavark/ (example version)
    2. Enter: cd netavark
    3. Build: make
    4. Install: sudo mv bin/netavark /usr/local/lib/podman/
  5. Install Aardvark (as normal user):
    1. Clone: git clone --branch=v1.0.2 https://github.com/containers/aardvark-dns/ (example version)
    2. Enter: cd aardvark-dns
    3. Build: make
    4. Install: sudo mv bin/aardvark-dns /usr/local/lib/podman/
  6. (Optional) Test it: podman version
    • If it can’t find Netavark og Aardvark, it will complain about it.
  7. (Optional) Add Docker compat stuff:
    1. Set Docker executable link: ln -s /usr/bin/podman /usr/bin/docker
    2. Set Docket socket path: echo "DOCKER_HOST=unix:///run/podman/podman.sock" >> /etc/environment
    3. Set sudo to accept the socket path env var: echo "Defaults env_keep += \"DOCKER_HOST\"" >> /etc/sudoers.d/docker-compat

Bugs & Caveats

Docker Compose

Debian

  1. Install Docker Compose: Docker Documentation: Install Docker Compose.
  2. Install command completion: Docker Documentation: Command-line completion.

Arch

  1. Install: pacman -S docker-compose

NVIDIA Container Toolkit

  1. Add the repo: See the installation guide.
  2. Install: apt install nvidia-container-toolkit (not nvidia-docker2)
  3. Fix an ldconfig bug (Debian 11): In /etc/nvidia-container-runtime/config.toml, under the nvidia-container-cli section, set ldconfig = "/sbin/ldconfig" (remove the @ prefix).
  4. Test: podman run --privileged --rm docker.io/nvidia/cuda:11.0-base nvidia-smi

Usage

General

Networking


hon.one | HON95/wiki | Edit page