WIP: test (+ more todos)

This commit is contained in:
2025-05-11 13:02:54 +10:00
parent 9eeda34e19
commit 72745cf268
4 changed files with 104 additions and 43 deletions

View File

@@ -0,0 +1,39 @@
name: bounce-test
services:
server:
build:
context: .
dockerfile: docker/Dockerfile-test-server
no_cache: true
tty: true
hostname: server
command: [
"/usr/local/bin/test-server", "--name", "server", "--debug",
"--udp", "0.0.0.0:10010",
"--tcp", "0.0.0.0:10020"
]
client-udp:
build:
context: .
dockerfile: docker/Dockerfile-test-client
no_cache: true
tty: true
hostname: client
command: [
"/usr/local/bin/test-client", "--debug", "--name", "client-udp",
"--udp", "server:10010"
]
client-tcp:
build:
context: .
dockerfile: docker/Dockerfile-test-client
no_cache: true
tty: true
hostname: client
command: [
"/usr/local/bin/test-client", "--debug", "--name", "client-tcp",
"--tcp", "server:10020"
]