Move heimdall to the portal service

This commit is contained in:
Colin Hebert
2023-01-20 17:38:30 +01:00
parent 0cdc2d09c6
commit 9dc6cc2f74
3 changed files with 27 additions and 21 deletions

27
portal/docker-compose.yml Normal file
View File

@@ -0,0 +1,27 @@
name: Portal
services:
heimdall:
image: linuxserver/heimdall
environment:
PUID: ${NASCOMPOSE_UID?}
PGID: ${NASCOMPOSE_GID?}
networks:
- traefik
volumes:
- heimdall_config:/config/
restart: unless-stopped
labels:
traefik.enable: true
traefik.http.routers.heimdall.middlewares: authelia@file
networks:
traefik:
external: true
volumes:
heimdall_config:
driver_opts:
type: none
o: bind
device: ${NASCOMPOSE_SERVICES?}/portal/volumes/heimdall_config/

View File