- docs/architecture.md: module structure, data flow, threading model (Mermaid diagrams) - docs/protocol.md: complete wire protocol specification with packet formats - docs/user-guide.md: server & client usage, CLI reference, troubleshooting - docs/docker.md: Docker, Compose, registry push, deployment options - Update docker-compose.yml with Gitea registry image tags Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
25 lines
628 B
YAML
25 lines
628 B
YAML
services:
|
|
btest-server:
|
|
build: .
|
|
image: git.manko.yoga/manawenuz/btest-rs:latest
|
|
container_name: btest-server
|
|
ports:
|
|
- "2000:2000/tcp"
|
|
- "2001-2100:2001-2100/udp"
|
|
- "2257-2356:2257-2356/udp"
|
|
command: ["-s", "-v"]
|
|
restart: unless-stopped
|
|
|
|
# Server with authentication enabled
|
|
btest-server-auth:
|
|
build: .
|
|
image: git.manko.yoga/manawenuz/btest-rs:latest
|
|
container_name: btest-server-auth
|
|
ports:
|
|
- "2010:2000/tcp"
|
|
- "2101-2200:2001-2100/udp"
|
|
command: ["-s", "-a", "admin", "-p", "password", "-v"]
|
|
restart: unless-stopped
|
|
profiles:
|
|
- auth
|