mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-04 10:56:23 +00:00
31 lines
806 B
YAML
31 lines
806 B
YAML
# https://hub.docker.com/r/linuxserver/heimdall
|
|
---
|
|
version: "2.1"
|
|
|
|
volumes:
|
|
heimdall:
|
|
|
|
networks:
|
|
admin_web:
|
|
external:
|
|
name: admin_web
|
|
|
|
services:
|
|
heimdall:
|
|
# https://hub.docker.com/r/linuxserver/heimdall
|
|
image: linuxserver/heimdall:${HEIMDALL_V}
|
|
container_name: heimdall
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=America/Vancouver
|
|
volumes:
|
|
- heimdall:/config
|
|
restart: unless-stopped
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.${PREFIX}_heimdall.rule=Host(`${HEIMDALL_DOMAIN_NAME}`)"
|
|
- "traefik.http.routers.${PREFIX}_heimdall.entrypoints=websecure"
|
|
- "traefik.http.routers.${PREFIX}_heimdall.tls.certresolver=letsencrypt"
|
|
- "traefik.http.services.${PREFIX}_heimdall.loadbalancer.server.port=80"
|