WebRtc_QingGan/docker-compose.yml
Song367 d06e94ad11
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 1m22s
修改部署文件
2025-07-29 18:34:11 +08:00

22 lines
394 B
YAML

version: '3.8'
services:
webrtc-app:
build: .
ports:
- "3000:3000"
volumes:
- ./videos:/app/videos
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:3000"]
interval: 30s
timeout: 10s
retries: 3
start_period: 60s
networks:
- webrtc-network
networks:
webrtc-network:
driver: bridge