mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-04 10:56:23 +00:00
20 lines
406 B
YAML
20 lines
406 B
YAML
# Heimdall
|
|
services:
|
|
heimdall:
|
|
image: ${HEIMDALL_IMAGE}
|
|
restart: ${HEIMDALL_RESTART:-unless-stopped}
|
|
volumes:
|
|
- ${VOL_PATH:-./data}/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
|