fix: capture when no stream is running

This commit is contained in:
2026-03-11 22:36:03 +01:00
parent 617f8c986b
commit de707294ec
5 changed files with 218 additions and 51 deletions

22
docker-compose.yml Normal file
View File

@@ -0,0 +1,22 @@
services:
grown:
image: git.klemp.dev/tobi/grown:latest
container_name: grown
restart: unless-stopped
environment:
- NODE_ENV=production
volumes:
- /volume1/docker/grown/keimli2/:/app/timelapse/
networks:
- traefik-proxy
labels:
- "traefik.enable=true"
- traefik.docker.network=traefik-proxy
- "traefik.http.routers.grown.rule=Host(`keimli.klemp.local`)"
- "traefik.http.routers.grown.entrypoints=http"
- "traefik.http.services.grown.loadbalancer.server.port=3000"
- traefik.http.routers.grown.service=grown
networks:
traefik-proxy:
external: true