Skip to content

Commit 133bae1

Browse files
committedMar 1, 2025··
Replace mc-proxy with socat
1 parent b491ad5 commit 133bae1

7 files changed

+58
-16
lines changed
 

‎Readme.md

+1
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ pip install jinja2 requests
6161
Now, you can spin up the field:
6262
```shell
6363
# Start all containers and keep showing the log in the foreground (ctrl+c will stop everything again)
64+
docker compose build
6465
docker compose up
6566
# Or alternatively run all containers in the background:
6667
docker compose up -d

‎docker-compose.yaml

+17-15
Original file line numberDiff line numberDiff line change
@@ -98,14 +98,15 @@ services:
9898
- expose
9999

100100
ssl-game-controller-public:
101-
image: g3force/proxy-tcp-udp-mc:0.2.1
102-
command:
103-
- "tcp,:10007,ssl-game-controller-private:10007,AutoRef"
104-
- "tcp,:10008,ssl-game-controller-private:10008,Team"
105-
- "tcp,:10011,ssl-game-controller-private:10011,RemoteCtrl"
106-
- "mc,224.5.23.1:11003,224.5.23.1:10003,Referee"
107-
- "mc,224.5.23.2:10006,224.5.23.2:11006,Vision"
108-
- "mc,224.5.23.2:10010,224.5.23.2:11010,Tracker"
101+
image: multisocat
102+
build: ./src/multisocat
103+
environment:
104+
SOCAT_AUTOREF: "TCP4-LISTEN:10007,fork TCP4:ssl-game-controller-private:10007"
105+
SOCAT_TEAM: "TCP4-LISTEN:10008,fork TCP4:ssl-game-controller-private:10008"
106+
SOCAT_REMOTECTRL: "TCP4-LISTEN:10011,fork TCP4:ssl-game-controller-private:10011"
107+
SOCAT_REFEREE: "UDP-LISTEN:224.5.23.1:11003 UDP4:224.5.23.1:10003"
108+
SOCAT_VISION: "UDP-LISTEN:224.5.23.2:10006 UDP4:224.5.23.2:11006"
109+
SOCAT_TRACKER: "UDP-LISTEN:224.5.23.2:10010 UDP4:224.5.23.2:11010"
109110
restart: unless-stopped
110111
ports:
111112
- "10007/tcp"
@@ -131,13 +132,14 @@ services:
131132
- simulator
132133

133134
simulator:
134-
image: g3force/proxy-tcp-udp-mc:0.2.1
135-
command:
136-
- "udp,:10301,simulator-private:10301,Blue"
137-
- "udp,:10302,simulator-private:10302,Yellow"
138-
- "mc,224.5.23.2:10020,224.5.23.2:10006,Vision"
139-
- "mc,224.5.23.1:10003,224.5.23.1:11003,Referee"
140-
- "mc,224.5.23.2:10010,224.5.23.2:11010,Tracker"
135+
image: multisocat
136+
build: ./src/multisocat
137+
environment:
138+
SOCAT_BLUE: "UDP-LISTEN:10301 simulator-private:10301"
139+
SOCAT_YELLOW: "UDP-LISTEN:10302 simulator-private:10302"
140+
SOCAT_VISION: "UDP-LISTEN:224.5.23.2:10020 224.5.23.2:10006"
141+
SOCAT_REFEREE: "UDP-LISTEN:224.5.23.1:10003 224.5.23.1:11003"
142+
SOCAT_TRACKER: "UDP-LISTEN:224.5.23.2:10010 224.5.23.2:11010"
141143
restart: unless-stopped
142144
ports:
143145
- "10300/udp"

‎init/bootstrap_ubuntu_server.sh

+1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ echo -n "${ROOT_DOMAIN}" >config/root_domain
5858
echo -n "${FIELD_NAME}" >config/field_name
5959
./config/docker/init.sh
6060
./config/caddy/generate_caddyfile.py
61+
docker compose build
6162
docker compose pull --quiet
6263
docker compose up -d
6364
sleep 30s

‎init/update.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ git pull
1111
./config/caddy/update_caddy_passwords.sh
1212
./config/caddy/generate_caddyfile.py
1313
./config/caddy/update_caddy_config.sh
14-
docker compose -f docker-compose.yaml -f docker-compose-teams.yaml -f docker-compose-monitoring.yaml pull
14+
docker compose -f docker-compose.yaml -f docker-compose-teams.yaml -f docker-compose-monitoring.yaml build
15+
docker compose -f docker-compose.yaml -f docker-compose-teams.yaml -f docker-compose-monitoring.yaml pull --ignore-buildable
1516
docker compose -f docker-compose.yaml -f docker-compose-teams.yaml -f docker-compose-monitoring.yaml up -d
1617

1718
#cp ./init/referee_access_cron /etc/cron.d/

‎src/multisocat/Dockerfile

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
FROM python:3.13-alpine
2+
RUN apk add --no-cache socat
3+
CMD [ "/multisocat.py" ]
4+
COPY multisocat.py /multisocat.py
5+
RUN chmod 0755 /multisocat.py
6+
USER nobody

‎src/multisocat/multisocat.py

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#!/usr/bin/env python3
2+
import os
3+
import subprocess
4+
import signal
5+
6+
processes = []
7+
for key in os.environ.keys():
8+
if key.startswith("SOCAT_"):
9+
processes.append(
10+
subprocess.Popen(["socat"] + os.environ.get(key).split(" ")))
11+
12+
13+
def terminate_processes():
14+
for process in processes:
15+
process.terminate()
16+
17+
18+
signal.signal(signal.SIGTERM, terminate_processes)
19+
20+
for process in processes:
21+
process.wait()

‎src/multisocat/multisocat.sh

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/usr/bin/env sh
2+
3+
set -euo pipefail
4+
5+
# Get all environment variables starting with "MULTISOCAT_"
6+
# and convert them to the format "MULTISOCAT_<name>=<value>"
7+
# to pass them to the multisocat script.
8+
env | grep '^MULTISOCAT_' | while read -r line; do
9+
export "$line"
10+
done

0 commit comments

Comments
 (0)
Please sign in to comment.