mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-22 16:13:31 +01:00
20 lines
458 B
YAML
20 lines
458 B
YAML
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
|