2026-04-23 23:40:34 -03:00
|
|
|
services:
|
|
|
|
|
decap-stream:
|
2026-04-26 03:02:31 -03:00
|
|
|
image: ghcr.io/riguettodev/decap-stream:latest
|
2026-04-23 23:40:34 -03:00
|
|
|
container_name: decap-stream
|
|
|
|
|
restart: unless-stopped
|
2026-04-26 03:02:31 -03:00
|
|
|
shm_size: "1gb"
|
2026-04-24 23:08:42 -03:00
|
|
|
security_opt:
|
|
|
|
|
- seccomp:unconfined
|
2026-04-23 23:40:34 -03:00
|
|
|
environment:
|
|
|
|
|
TZ: America/Sao_Paulo
|
2026-04-26 03:02:31 -03:00
|
|
|
# AUTH_USER: admin # Se definido (junto com AUTH_PASS), habilita login
|
|
|
|
|
# AUTH_PASS: secure_password
|
2026-04-23 23:40:34 -03:00
|
|
|
ports:
|
2026-04-26 03:02:31 -03:00
|
|
|
- "3000:3000" # Web UI — main entry point
|
|
|
|
|
- "127.0.0.1:6080:6080" # VNC — localhost only; remote access via tunnel/VPN
|
|
|
|
|
# - "1935:1935" # RTMP — internal only; expose only for external ingest (e.g. OBS)
|
|
|
|
|
# - "8888:8888" # HLS — internal only; proxied through Next.js at /api/hls/
|
2026-04-23 23:40:34 -03:00
|
|
|
volumes:
|
2026-04-25 15:08:25 -03:00
|
|
|
- streams:/app/data/streams # Persistent: streams.json, chrome profiles, thumbs
|
|
|
|
|
# - logs:/app/data/logs # Optional
|
2026-04-23 23:40:34 -03:00
|
|
|
|
|
|
|
|
volumes:
|
2026-04-25 15:08:25 -03:00
|
|
|
streams:
|