Skip to content

Portainer

Portainer provides a web UI for managing Docker, Podman, and Kubernetes environments. Our images deploy through it without any special configuration.

  1. In Portainer, go to StacksAdd stack.

  2. Choose the Web editor and paste a Compose definition:

    services:
    home-assistant:
    image: ghcr.io/trueforge-org/home-assistant:2025.5.1
    container_name: home-assistant
    user: 568:568
    ports:
    - 8123:8123
    volumes:
    - home-assistant-config:/config
    restart: unless-stopped
    volumes:
    home-assistant-config:
  3. Click Deploy the stack.

For reproducible deployments, point Portainer at a Git repository containing your Compose files. Combine this with Renovate to automate image updates via pull requests.

Portainer’s “Pull image” toggle re-pulls by tag on redeploy. To guarantee immutability across redeploys, pin to a digest as described in Tag Immutability.