mirror of
https://github.com/hsnks100/liveflow.git
synced 2025-09-26 20:21:12 +08:00
19 lines
392 B
YAML
19 lines
392 B
YAML
version: "2.1"
|
|
services:
|
|
liveflow:
|
|
image: liveflow_custom:latest
|
|
mem_limit: 350m
|
|
stdin_open: true # docker run -i
|
|
tty: true # docker run -t
|
|
volumes:
|
|
- "~/.store:/app/videos"
|
|
ports:
|
|
- "8044:8044"
|
|
- "1930:1930"
|
|
- "40000-40010:40000-40010/udp"
|
|
environment:
|
|
DOCKER_MODE: "true"
|
|
build:
|
|
context: ./
|
|
dockerfile: Dockerfile
|