mirror of
https://github.com/Viren070/docker-compose-template.git
synced 2025-12-01 23:17:00 +01:00
1d3d792e12
* 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
23 lines
647 B
YAML
23 lines
647 B
YAML
services:
|
|
# Start page for your serve
|
|
dash:
|
|
image: mauricenino/dashdot:latest
|
|
container_name: dash
|
|
restart: unless-stopped
|
|
expose:
|
|
- 3001
|
|
privileged: true
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- /:/mnt/host:ro
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.dash.rule=Host(`${DASHDOT_HOSTNAME?}`)"
|
|
- "traefik.http.routers.dash.entrypoints=websecure"
|
|
- "traefik.http.routers.dash.tls.certresolver=letsencrypt"
|
|
- "traefik.http.routers.dash.middlewares=authelia@docker"
|
|
- "flame.type=app"
|
|
- "flame.name=Dash"
|
|
- "flame.url=https://${DASHDOT_HOSTNAME?}"
|