Files
liveflow/docker-compose.yaml
Han Gyoung-Su cb7d99483f build(docker): update Dockerfile and add FFmpeg installation script with Leak Sanitizer support (#14)
- modify Dockerfile to include static files and create videos directory
- update docker-compose to change UDP port range
- add install-ffmpeg-lsan.sh for FFmpeg installation with Leak Sanitizer
- create lsan.Dockerfile for building with Leak Sanitizer
2025-03-13 01:36:14 +09:00

19 lines
393 B
YAML

# docker-compose
version: "3.4"
services:
liveflow:
image: liveflow_custom:latest
stdin_open: true # docker run -i
tty: true # docker run -t
volumes:
- "~/.store:/app/bin/videos"
ports:
- "8044:8044"
- "1930:1930"
- "40000-41000:40000-41000/udp"
environment:
DOCKER_MODE: "true"
build:
context: ./
dockerfile: Dockerfile