This commit is contained in:
Tim
2026-04-05 21:24:05 +02:00
commit 922d00f52f
4 changed files with 59 additions and 0 deletions

13
compose.yaml Normal file
View File

@@ -0,0 +1,13 @@
services:
ffmpeg-archive:
build: .
container_name: ffmpeg-archive
environment:
- INPUT=${INPUT:-rtsp://your-stream-url}
# uses strftime for naming
- OUTPUT=${OUTPUT:-/output/%Y-%m-%d_%H-%M-%S.mkv}
- PUID=${PUID:-1000}
- PGID=${PGID:-1000}
volumes:
- ${RECORDINGS_DIR:-./recordings}:/output
restart: unless-stopped