-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yml
More file actions
26 lines (26 loc) · 884 Bytes
/
compose.yml
File metadata and controls
26 lines (26 loc) · 884 Bytes
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
# Needed environment variables:
# FLAME_HOST - The URL at which this service should be made available.
# FLAME_PASSWORD - The password to access the service.
services:
flame:
container_name: flame
image: pawelmalak/flame:multiarch
pull_policy: build
restart: unless-stopped
environment:
- PASSWORD=${FLAME_PASSWORD}
networks:
- proxy
volumes:
- /appdata/flame:/app/data
- /var/run/docker.sock:/var/run/docker.sock # optional but required for Docker integration
labels:
- com.centurylinklabs.watchtower.enable=true
- traefik.enable=true
- "traefik.http.routers.flame.rule=Host(`${FLAME_HOST}`)"
- traefik.http.routers.flame.entrypoints=websecure
- traefik.http.routers.flame.tls.certresolver=cloudflare
- traefik.http.routers.flame.middlewares=tinyauth
networks:
proxy:
external: true