Files
docker-compose-template/apps/flame/compose.yaml
T
Viren070 1d3d792e12 feat: split up compose.yaml into multiple folders and add authelia to secure apps, add some more apps (#1)
* feat: .

* feat: delete old data folder

* fix: rename zipline-db service to zipline_postgres in compose.yaml

* fix: add zipline compose to include list

* fix: add redis service for stremthru

* docs: add instructions in .env files

* feat: remove docker folder and place apps and data folder in root dir

* fix: add empty tokens.json file for plex_authentication

* fix: add aiostremio template config

* docs: update README with Authelia authentication and clarify setup instructions

* fix: update stremthru_redis volume path and profile name in compose.yaml
2025-04-05 01:22:29 +01:00

20 lines
604 B
YAML

services:
# Start page for your server
flame:
image: pawelmalak/flame:multiarch
container_name: flame
restart: unless-stopped
expose:
- 5005
env_file:
- .env
labels:
- "traefik.enable=true"
- "traefik.http.routers.flame.rule=Host(`${FLAME_HOSTNAME?}`)"
- "traefik.http.routers.flame.entrypoints=websecure"
- "traefik.http.routers.flame.tls.certresolver=letsencrypt"
- "traefik.http.routers.flame.middlewares=authelia@docker"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ${DOCKER_DATA_DIR:-.}/flame:/app/data