feat(server): complete phase 6 local verification

This commit is contained in:
Josh Creek
2026-08-21 18:38:30 +01:00
parent ec896b27ac
commit f2b72394de
21 changed files with 604 additions and 4 deletions
+35
View File
@@ -0,0 +1,35 @@
services:
server:
platform: linux/amd64
build:
context: .
target: server
command:
- --port=7777
- --min-players=2
- --start-countdown=0
- --match-length=1
- --max-matches=2
- --slot-reservation-seconds=0
- --smoke-force-goal-after=0
- --log-level=debug
ports:
- "7777:7777/udp"
client-one:
platform: linux/amd64
build:
context: .
target: smoke-client
depends_on:
- server
command: ["--address=server", "--port=7777", "--name=ExportSmokeOne", "--expected-goals=2"]
client-two:
platform: linux/amd64
build:
context: .
target: smoke-client
depends_on:
- server
command: ["--address=server", "--port=7777", "--name=ExportSmokeTwo", "--expected-goals=2"]