17 lines
346 B
YAML
17 lines
346 B
YAML
services:
|
|
heimdall:
|
|
image: lscr.io/linuxserver/heimdall
|
|
container_name: heimdall
|
|
restart: always
|
|
volumes:
|
|
- configheimdall:/config
|
|
environment:
|
|
- PGID=${PGID}
|
|
- PUID=${PUID}
|
|
- TZ=${TZ}
|
|
|
|
volumes:
|
|
configheimdall:
|
|
driver: local-persist
|
|
driver_opts:
|
|
mountpoint: $HOST_CONFIG_PATH/heimdall |