mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-16 15:26:40 +00:00
* using wiretrustee-mgmt for binary name * using wiretrustee-mgmt * updated documentation and compose files to use config.json
32 lines
851 B
YAML
32 lines
851 B
YAML
version: "3"
|
|
services:
|
|
# Signal
|
|
signal:
|
|
image: wiretrustee/wiretrustee:signal-latest
|
|
restart: unless-stopped
|
|
ports:
|
|
- 10000:10000
|
|
# Management
|
|
management:
|
|
image: wiretrustee/management:latest
|
|
restart: unless-stopped
|
|
volumes:
|
|
- wiretrustee-mgmt:/var/lib/wiretrustee
|
|
- ./config.json:/etc/wiretrustee/config.json
|
|
ports:
|
|
- 33073:33073
|
|
# # port and command for Let's Encrypt validation
|
|
# - 443:443
|
|
# command: ["--letsencrypt-domain", "<YOUR-DOMAIN>"]
|
|
# 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
|
|
volumes:
|
|
wiretrustee-mgmt: |