14 lines
284 B
YAML
14 lines
284 B
YAML
version: "3"
|
|
services:
|
|
heimdall:
|
|
image: ghcr.io/linuxserver/heimdall
|
|
container_name: heimdall
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Europe/Berlin
|
|
volumes:
|
|
- /opt/heimdall/data:/config
|
|
ports:
|
|
- 8124:80
|
|
restart: unless-stopped |