26 lines
650 B
YAML
26 lines
650 B
YAML
version: '3.3'
|
|
|
|
services:
|
|
heimdall:
|
|
image: ghcr.io/linuxserver/heimdall
|
|
environment:
|
|
PUID: 1000
|
|
PGID: 1000
|
|
TZ: "America/Los_Angeles"
|
|
volumes:
|
|
- heimdall-volume:/config
|
|
networks:
|
|
- traefik-public
|
|
deploy:
|
|
labels:
|
|
traefik.enable: "true"
|
|
traefik.constraint-label: "traefik-public"
|
|
traefik.http.routers.heimdall-http.rule: "Host(`heimdall.home.thejimnicholson.com`)"
|
|
traefik.http.routers.heimdall-http.entrypoints: "http"
|
|
traefik.http.services.heimdall.loadbalancer.server.port: 80
|
|
networks:
|
|
traefik-public:
|
|
external: true
|
|
volumes:
|
|
heimdall-volume:
|