diff --git a/heimdall/compose.yaml b/heimdall/compose.yaml new file mode 100644 index 0000000..4c3c9dd --- /dev/null +++ b/heimdall/compose.yaml @@ -0,0 +1,17 @@ +services: + haproxy: + image: lscr.io/linuxserver/heimdall:latest + container_name: heimdall + restart: always + environment: + - PUID=1000 + - PGID=1000 + - TZ=Europe/Moscow + - ALLOW_INTERNAL_REQUESTS=false #optional + volumes: + - /docker/data/heimdall/config:/config + networks: + - caddy_default +networks: + caddy_default: + external: true