mirror of
https://github.com/Haxxnet/Compose-Examples
synced 2024-11-24 12:31:13 +00:00
25 lines
976 B
YAML
25 lines
976 B
YAML
version: '3.7'
|
|
|
|
services:
|
|
mirotalk:
|
|
image: mirotalk/p2p:latest
|
|
restart: unless-stopped
|
|
container_name: mirotalk
|
|
hostname: mirotalk
|
|
ports:
|
|
# use a reverse proxy with SSL/TLS support
|
|
# otherwise webrtc won't work with plaintext http after Chrome 47+
|
|
# see https://stackoverflow.com/questions/52759992/how-to-access-camera-and-microphone-in-chrome-without-https/58449078#58449078
|
|
- 3000:3000 # WEB UI;
|
|
volumes:
|
|
- .env:/src/.env:ro
|
|
- /mnt/docker-volumes/mirotalk/app:/src/app:ro
|
|
- /mnt/docker-volumes/mirotalk/public:/src/public:ro
|
|
#labels:
|
|
#- traefik.enable=true
|
|
#- traefik.http.routers.mirotalk.rule=Host(`meet.example.com`) # pls adjust
|
|
#- traefik.http.services.mirotalk.loadbalancer.server.port=3000
|
|
#- traefik.docker.network=proxy
|
|
## Part for local lan services only; disable to expose externally
|
|
##- traefik.http.routers.mirotalk.middlewares=local-ipwhitelist@file
|