Skip to content

Commit

Permalink
Adding example docker compose for signal and coturn
Browse files Browse the repository at this point in the history
  • Loading branch information
mlsmaycon committed May 25, 2021
1 parent e622b2a commit c8ad10d
Show file tree
Hide file tree
Showing 2 changed files with 743 additions and 0 deletions.
19 changes: 19 additions & 0 deletions infrastructe_files/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -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
Loading

0 comments on commit c8ad10d

Please sign in to comment.