Skip to content

Latest commit

 

History

History
48 lines (36 loc) · 1.06 KB

Podman.md

File metadata and controls

48 lines (36 loc) · 1.06 KB

categories: TODO ...

Podman

Podman

Tooling

  • podman-compose, "An implementation of docker-compose with Podman backend. The main objective of this project is to be able to run docker-compose.yml unmodified and rootless."

Resources

Cookbook

Kernel namespaces feature

echo 'kernel.unprivileged_userns_clone=1' | sudo tee /etc/sysctl.d/userns.conf

Registries

  • ~/.config/containers/policy.json

    {
        "default": [
            {
                "type": "insecureAcceptAnything"
            }
        ],
        "transports":
            {
                "docker-daemon":
                    {
                        "": [{"type":"insecureAcceptAnything"}]
                    }
            }
    }
  • ~/.config/containers/registries.conf

    unqualified-search-registries = ['docker.io']