mirror of
https://github.com/Haxxnet/Compose-Examples
synced 2024-11-23 20:11:12 +00:00
18 lines
360 B
YAML
18 lines
360 B
YAML
services:
|
|
|
|
heimdall:
|
|
image: linuxserver/heimdall:latest
|
|
container_name: heimdall
|
|
hostname: heimdall
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Europe/Berlin
|
|
ports:
|
|
- 8099:80
|
|
expose:
|
|
- 80
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/heimdall:/config
|