Initial commit
This commit is contained in:
commit
6c8bbaf8ac
15 changed files with 918 additions and 0 deletions
27
heimdall/docker-compose.yaml
Normal file
27
heimdall/docker-compose.yaml
Normal file
|
@ -0,0 +1,27 @@
|
|||
version: "3.3"
|
||||
|
||||
services:
|
||||
|
||||
app:
|
||||
image: linuxserver/heimdall:version-2.2.2
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Europe/Berlin
|
||||
volumes:
|
||||
- ${VOLUMES_PATH}/heimdall:/config
|
||||
expose:
|
||||
- "80"
|
||||
networks:
|
||||
- web
|
||||
labels:
|
||||
- "traefik.enable=true"
|
||||
- "traefik.http.routers.heimdall.rule=Host(`heimdall.${DOMAIN}`)"
|
||||
- "traefik.http.routers.heimdall.entrypoints=web"
|
||||
- "traefik.http.services.heimdall.loadbalancer.server.port=80"
|
||||
- "docker.group=selfhost"
|
||||
restart: unless-stopped
|
||||
|
||||
networks:
|
||||
web:
|
||||
external: true
|
Loading…
Add table
Add a link
Reference in a new issue