16 lines
294 B
YAML
16 lines
294 B
YAML
|
version: "2.1"
|
||
|
services:
|
||
|
heimdall:
|
||
|
image: linuxserver/heimdall
|
||
|
container_name: heimdall
|
||
|
volumes:
|
||
|
- /home/pi/heimserver:/config
|
||
|
environment:
|
||
|
- PUID=1000
|
||
|
- PGID=1000
|
||
|
- TZ=Europe/London
|
||
|
ports:
|
||
|
- 80:80
|
||
|
- 443:443
|
||
|
restart: unless-stopped
|