-
-
Notifications
You must be signed in to change notification settings - Fork 273
/
docker-compose.yml
25 lines (24 loc) · 1.16 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
services:
mirotalk:
image: mirotalk/p2p:latest
container_name: mirotalk
hostname: mirotalk
restart: unless-stopped
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
expose:
- 3000
volumes:
- .env:/src/.env:ro
#- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/mirotalk/app:/src/app:ro # only necessary if you want to adjust the code itself (js, css, etc.)
#- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/mirotalk/public:/src/public:ro # only necessary if you want to adjust the code itself (js, css, etc.)
#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