mirror of
https://github.com/hsnks100/liveflow.git
synced 2025-09-26 20:21:12 +08:00

- 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
19 lines
393 B
YAML
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
|