Adding example docker compose for signal and coturn

This commit is contained in:
mlsmaycon
2021-05-25 11:32:25 +05:00
parent e622b2a529
commit c8ad10d653
2 changed files with 743 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
version: "3"
services:
# Signal
signal:
image: wiretrustee/wiretrustee:signal-latest
restart: unless-stopped
ports:
- 10000:10000
# Coturn
coturn:
image: coturn/coturn
restart: unless-stopped
domainname: stun.wiretrustee.com
volumes:
- ./turnserver.conf:/etc/turnserver.conf:ro
# - ./privkey.pem:/etc/coturn/private/privkey.pem:ro
# - ./cert.pem:/etc/coturn/certs/cert.pem:ro
network_mode: host