mirror of
https://github.com/samjage/lab.git
synced 2026-06-06 04:00:42 +00:00
32 lines
719 B
YAML
32 lines
719 B
YAML
services:
|
|
tuwunel:
|
|
image: jevolk/tuwunel:latest
|
|
container_name: tuwunel
|
|
restart: unless-stopped
|
|
environment:
|
|
- TUWUNEL_CONFIG=/etc/tuwunel/tuwunel.toml
|
|
volumes:
|
|
- tuwunel-data:/var/lib/tuwunel
|
|
- ./conduit/conduit.toml:/etc/tuwunel/tuwunel.toml:ro
|
|
networks:
|
|
- backbone
|
|
|
|
coturn:
|
|
image: coturn/coturn:latest
|
|
container_name: coturn
|
|
restart: unless-stopped
|
|
command:
|
|
- "--log-file=stdout"
|
|
- "--external-ip=$(detect-external-ip)"
|
|
volumes:
|
|
- ./coturn/turnserver.conf:/etc/coturn/turnserver.conf:ro
|
|
network_mode: host
|
|
|
|
volumes:
|
|
tuwunel-data:
|
|
external: true
|
|
name: matrix_tuwunel-data
|
|
|
|
networks:
|
|
backbone:
|
|
external: true |