24 أسطر
1022 B
YAML
24 أسطر
1022 B
YAML
services:
|
|
mirotalksfu:
|
|
image: mirotalk/sfu:latest
|
|
container_name: mirotalksfu
|
|
hostname: mirotalksfu
|
|
restart: unless-stopped
|
|
# The following ports are only required if 'network_mode: host' is NOT enabled.
|
|
# If you enable 'network_mode: host', you can comment out or remove the 'ports' section below.
|
|
# network_mode: 'host'
|
|
ports:
|
|
- '3010:3010/tcp'
|
|
- '40000-40100:40000-40100/tcp'
|
|
- '40000-40100:40000-40100/udp'
|
|
volumes:
|
|
- ./app/src/config.js:/src/app/src/config.js:ro
|
|
- ./.env:/src/.env:ro
|
|
# Mandatory volume if `server.recording.enabled` is true in app/src/config.js
|
|
# - ./app/rec:/src/app/rec
|
|
# Mandatory volume if `server.rtmp.enabled.fromFile` is true in app/src/config.js
|
|
# - ./app/rtmp:/src/app/rtmp
|
|
# Optional volumes for real-time updates:
|
|
# - ./app/:/src/app/:ro
|
|
# - ./public/:/src/public/:ro
|