Enable and start the Podman Docker-compatible socket:
systemctl --user enable --now podman.socketTell Docker-compatible tools where the socket lives by adding this to your shell config:
export DOCKER_HOST=unix://$XDG_RUNTIME_DIR/podman/podman.sock
# alternative, should resolve to same path
export DOCKER_HOST=unix:///run/user/$(id -u)/podman/podman.sockIn rootless mode, this is usually required or containers may hang or fail to clean up:
export TESTCONTAINERS_RYUK_DISABLED=trueExample to export them, using fish shell
set -Ux DOCKER_HOST unix://$XDG_RUNTIME_DIR/podman/podman.sock
set -Ux TESTCONTAINERS_RYUK_DISABLED true