Files
stream-recorder/docker-compose.yml
T
Patrick AsmusandClaude Opus 4.6 b446ce9b3e
Build Release Docker Image / build-arm64 (release) Successful in 1m0s
Build Release Docker Image / build-amd64 (release) Successful in 2m50s
Build Release Docker Image / publish-release-manifest (release) Successful in 7s
v3.0.0: Docker-Migration mit CI-Pipeline und neuen Features
- Gitea CI-Workflows fuer Multi-Arch Docker Builds (amd64 + arm64)
- Beschreibungsfeld und mehrtaegige Zeitplanung fuer Jobs
- Benachrichtigungen auf Deutsch
- docker-compose nutzt Registry-Image

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-09-16 09:40:40 +02:00

33 lines
1.0 KiB
YAML

services:
stream-recorder:
image: git.techniverse.net/scriptos/stream-recorder:latest
container_name: stream-recorder
restart: unless-stopped
ports:
- "${APP_PORT_BIND:-8484}:8484"
volumes:
- ./data:/app/data
# Optional: Recordings auf separatem Pfad (dann download_path in Einstellungen anpassen)
# - /mnt/storage/recordings:/recordings
networks:
stream-recorder_net:
ipv4_address: ${APP_IPV4_ADDRESS:-172.16.84.10}
environment:
TZ: ${TZ:-Europe/Berlin}
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8484/api/health"]
interval: 30s
timeout: 5s
retries: 3
start_period: 10s
networks:
stream-recorder_net:
name: ${DOCKER_NETWORK_NAME:-stream-recorder.dockernetwork.local}
driver: bridge
ipam:
config:
- subnet: ${DOCKER_NETWORK_SUBNET:-172.16.84.0/24}
gateway: ${DOCKER_NETWORK_GATEWAY:-172.16.84.1}
ip_range: ${DOCKER_NETWORK_IP_RANGE:-172.16.84.128/25}