All checks were successful
CI / test (push) Successful in 2m9s
- docker-compose.yml: ghcr.io/manawenuz/btest-rs - docs/docker.md: GHCR for pull/run examples, both registries documented - README: GitHub + Gitea issue tracker links - Version refs updated to 0.6.0 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
25 lines
614 B
YAML
25 lines
614 B
YAML
services:
|
|
btest-server:
|
|
build: .
|
|
image: ghcr.io/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: ghcr.io/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
|