-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
30 lines (30 loc) · 917 Bytes
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
version: "3.3"
services:
heimdall:
image: lscr.io/linuxserver/heimdall
container_name: heimdall
environment:
- PUID=1000
- PGID=1000
- TZ=Asia/Ho_Chi_Minh
volumes:
- ./config:/config
expose:
- 80
- 443
restart: always
networks:
- traefik
labels:
- 'traefik.enable=true'
- "traefik.docker.network=traefik"
- "traefik.http.routers.helmdall-web.middlewares=authelia@docker"
- "traefik.http.routers.helmdall-web.entrypoints=http"
- "traefik.http.routers.helmdall-web.rule=Host(`$APP_URL`)"
- "traefik.http.routers.helmdall-secure.entrypoints=https"
- "traefik.http.routers.helmdall-secure.rule=Host(`$APP_URL`)"
- "traefik.http.routers.helmdall-secure.middlewares=authelia@docker"
- "traefik.http.routers.helmdall-secure.tls.certresolver=letsencrypt"
networks:
traefik:
external: true