forked from coop-cloud/traefik
Add Mumble TCP/UDP ports
This commit is contained in:
parent
46010aeb95
commit
a9a513e8da
2
abra.sh
2
abra.sh
@ -1,3 +1,3 @@
|
||||
export TRAEFIK_YML_VERSION=v10
|
||||
export TRAEFIK_YML_VERSION=v11
|
||||
export FILE_PROVIDER_YML_VERSION=v2
|
||||
export ENTRYPOINT_VERSION=v2
|
||||
|
9
compose.mumble.yml
Normal file
9
compose.mumble.yml
Normal file
@ -0,0 +1,9 @@
|
||||
version: "3.8"
|
||||
services:
|
||||
app:
|
||||
environment:
|
||||
- MUMBLE_ENABLED
|
||||
ports:
|
||||
- "64738:64738/udp"
|
||||
# note (3wc): see https://github.com/docker/compose/issues/7627
|
||||
- "64737-64739:64737-64739/tcp"
|
@ -48,6 +48,12 @@ entrypoints:
|
||||
mssql:
|
||||
address: ":1433"
|
||||
{{ end }}
|
||||
{{ if eq (env "MUMBLE_ENABLED") "1" }}
|
||||
mumble:
|
||||
address: ":64738"
|
||||
mumble-udp:
|
||||
address: ":64738/udp"
|
||||
{{ end }}
|
||||
|
||||
ping:
|
||||
entryPoint: web
|
||||
|
Loading…
x
Reference in New Issue
Block a user