mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-04 02:46:23 +00:00
19 lines
416 B
YAML
19 lines
416 B
YAML
services:
|
|
heimdall:
|
|
image: ${HEIMDALL_IMAGE:-linuxserver/heimdall:latest}
|
|
restart: ${HEIMDALL_RESTART:-unless-stopped}
|
|
volumes:
|
|
- ${VOL_PATH}/heimdall:/config
|
|
environment:
|
|
- PGID=${HEIMDALL_PGID:-1000}
|
|
- PUID=${HEIMDALL_PUID:-1000}
|
|
- TZ=${TZ:-America/Vancouver}
|
|
ports:
|
|
- ${HEIMDALL_PORT:-8000}:80
|
|
networks:
|
|
- proxy
|
|
|
|
networks:
|
|
proxy:
|
|
external: true
|