From 59624016988b6f8720bd83f16bcabbf1047a7464 Mon Sep 17 00:00:00 2001 From: nough Date: Wed, 10 Mar 2021 08:54:03 +0000 Subject: [PATCH 1/2] Network config details the IP addresses Details the IP addresses used in the docker-compose.tmpl.yml file --- docs/Network Config.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 docs/Network Config.md diff --git a/docs/Network Config.md b/docs/Network Config.md new file mode 100644 index 0000000..a139fbe --- /dev/null +++ b/docs/Network Config.md @@ -0,0 +1,32 @@ + +## Network Configuration +Services as configured. +|Service | Network | IP address | Other Option | +--- | --- | --- | --- +| bbb-web | bbb-net | 10.7.7.2 | +| html5-backend-{{$i}} | bbb-net | 10.7.7.{{add 100 $i}}| Port {{ add 4000 $i }} +| html5-frontend-{{$i}}| bbb-net | 10.7.7.{{add 200 $i}}| Port {{ add 4100 $i }} +| freeswitch| network_mode: host | | +| nginx | network_mode: host| | extra_hosts:
- "host.docker.internal:10.7.7.1"
- "core:10.7.7.2"
- "etherpad:10.7.7.4"
- "webrtc-sfu:10.7.7.10"
- "html5:10.7.7.11" +| etherpad | bbb-net | 10.7.7.4| +| redis | bbb-net | 10.7.7.5| +| mongodb | bbb-net | 10.7.7.6| +| kurento | network-mode: host | | +| webrtc-sfu | bbb-net | 10.7.7.10| ports: - "127.0.0.1:3008:3008"
extra_hosts:
- host.docker.internal:10.7.7.1
- kurento:10.7.7.1 +| fsesl-akka | bbb-net | 10.7.7.14 | +| apps-akka | bbb-net | 10.7.7.15 | +| libreoffice | bbb-net | 10.7.7.7 | +| periodic | bbb-net | 10.7.7.12 | +| recordings | bbb-net | 10.7.7.16 | +| webhooks | bbb-net | 10.7.7.17 | +| https_proxy | bbb-net | |network_mode: host +| coturn | network_mode: host | | +| greenlight | | | ports: 10.7.7.1:5000:80 +| prometheus | bbb-net | 10.7.7.33 | + +networks: + bbb-net: + ipam: + driver: default + config: + - subnet: "10.7.7.0/24" From 97d1d1a1c49c264d7aefe3f5c6a636b584f2ea23 Mon Sep 17 00:00:00 2001 From: chandi Date: Sat, 27 Mar 2021 15:51:14 +0100 Subject: [PATCH 2/2] docker-compose network config in a code block --- docs/{Network Config.md => network-config.md} | 2 ++ 1 file changed, 2 insertions(+) rename docs/{Network Config.md => network-config.md} (99%) diff --git a/docs/Network Config.md b/docs/network-config.md similarity index 99% rename from docs/Network Config.md rename to docs/network-config.md index a139fbe..889edb3 100644 --- a/docs/Network Config.md +++ b/docs/network-config.md @@ -24,9 +24,11 @@ Services as configured. | greenlight | | | ports: 10.7.7.1:5000:80 | prometheus | bbb-net | 10.7.7.33 | +```yml networks: bbb-net: ipam: driver: default config: - subnet: "10.7.7.0/24" +```