diff --git a/apps/stash/docker-compose.yml b/apps/stash/docker-compose.yml new file mode 100644 index 0000000..9ce03fb --- /dev/null +++ b/apps/stash/docker-compose.yml @@ -0,0 +1,34 @@ +version: "3.9" + +services: + stash: + image: stashapp/stash + container_name: Stash + restart: unless-stopped + + environment: + - TZ=Europe/Berlin + + volumes: + - /mnt/user/appdata/stash/config:/root/.stash + - /mnt/user/appdata/stash/blobs:/blobs + - /mnt/user/appdata/stash/cache:/cache + - /mnt/user/media/Heimatfilme:/data + - /mnt/user/appdata/stash/generated:/generated + - /mnt/user/appdata/stash/metadata:/metadata + + networks: + - frontend_net + + labels: + - "traefik.enable=true" + - "traefik.docker.network=frontend_net" + - "traefik.http.routers.stash.rule=Host(`stash.kaleschke.info`)" + - "traefik.http.routers.stash.entrypoints=websecure" + - "traefik.http.routers.stash.tls.certresolver=le" + - "traefik.http.routers.stash.middlewares=secure-headers@file" + - "traefik.http.services.stash.loadbalancer.server.port=9999" + +networks: + frontend_net: + external: true \ No newline at end of file