Podman
Podman is a daemonless, drop-in alternative to Docker that runs containers rootless by default — a great match for our images.
Pulling an Image
Section titled “Pulling an Image”podman pull ghcr.io/trueforge-org/home-assistant:2025.5.1Running a Container
Section titled “Running a Container”podman run -d \ --name home-assistant \ --user 568:568 \ -p 8123:8123 \ -v home-assistant-config:/config \ ghcr.io/trueforge-org/home-assistant:2025.5.1Using Compose
Section titled “Using Compose”Podman supports Compose files via podman compose or the standalone podman-compose tool. Compose snippets from our Docker Compose guide work unchanged.
Quadlets (systemd)
Section titled “Quadlets (systemd)”For long-running services, generate a Quadlet so systemd manages the container:
[Container]Image=ghcr.io/trueforge-org/home-assistant:2025.5.1ContainerName=home-assistantPublishPort=8123:8123Volume=home-assistant-config:/configUser=568:568
[Service]Restart=always
[Install]WantedBy=multi-user.targetReload and start:
systemctl daemon-reloadsystemctl start home-assistant