# Using Podman instead of Docker Podman has an [Docker API compatibility layer](https://podman.io/blogs/2020/06/29/podman-v2-announce.html#restful-api). k3d uses the Docker API and is compatible with Podman v4 and higher. !!! important "Podman support is experimental" k3d is not guaranteed to work with Podman. If you find a bug, do help by [filing an issue](https://github.com/k3d-io/k3d/issues/new?labels=bug&template=bug_report.md&title=%5BBUG%5D+Podman) Tested with podman version: ```bash Client: Podman Engine Version: 4.3.1 API Version: 4.3.1 ``` ## Using Podman Ensure the Podman system socket is available: ```bash sudo systemctl enable --now podman.socket # or to start the socket daemonless # sudo podman system service --time=0 & ``` Disable timeout for podman service:
See the [podman-system-service (1)](https://docs.podman.io/en/latest/markdown/podman-system-service.1.html) man page for more information. ```bash mkdir -p /etc/containers/containers.conf.d echo 'service_timeout=0' > /etc/containers/containers.conf.d/timeout.conf ``` To point k3d at the right Docker socket, create a symbolic link: ```bash sudo ln -s /run/podman/podman.sock /var/run/docker.sock # or install your system podman-docker if available sudo k3d cluster create ``` Alternatively, set `DOCKER_HOST` when running k3d: ```bash export DOCKER_HOST=unix:///run/podman/podman.sock export DOCKER_SOCK=/run/podman/podman.sock sudo --preserve-env=DOCKER_HOST --preserve-env=DOCKER_SOCK k3d cluster create ``` ### Using rootless Podman Ensure the Podman user socket is available: ```bash systemctl --user enable --now podman.socket # or podman system service --time=0 & ``` Set `DOCKER_HOST` when running k3d: ```bash XDG_RUNTIME_DIR=${XDG_RUNTIME_DIR:-/run/user/$(id -u)} export DOCKER_HOST=unix://$XDG_RUNTIME_DIR/podman/podman.sock export DOCKER_SOCK=$XDG_RUNTIME_DIR/podman/podman.sock k3d cluster create ``` #### Using cgroup (v2) By default, a non-root user can only get memory controller and pids controller to be delegated. To run properly we need to enable CPU, CPUSET, and I/O delegation !!! note "Make sure you're running cgroup v2" If `/sys/fs/cgroup/cgroup.controllers` is present on your system, you are using v2, otherwise you are using v1. ```bash mkdir -p /etc/systemd/system/user@.service.d cat > /etc/systemd/system/user@.service.d/delegate.conf <