bunker/server/localdevzone/bunkerd/docker-compose.debug.yaml
Stanislav N. aka pztrn 2c13e3f380
Some checks failed
Linting and tests / Linting (push) Failing after 37s
Basic server app with WS connection.
2025-09-15 09:33:25 +05:00

28 lines
650 B
YAML

---
services:
bunkerd-debug:
container_name: "bunkerd-debug"
build:
context: ../../../
dockerfile: server/Dockerfile.debug
ports:
- "54400:54400"
- "54401:4000"
volumes:
- "./data:/data"
networks:
bunkerd:
ipv4_address: 247.247.0.3
environment:
BUNKERD_DATABASE_MAX_IDLE_CONNS: 5
BUNKERD_DATABASE_MAX_OPENED_CONNS: 20
BUNKERD_DATABASE_DSN: "postgres://postgres:postgres@247.247.0.4:5432/bunkerd?sslmode=disable"
BUNKERD_HTTP_ADDRESS: "0.0.0.0:53400"
BUNKERD_LOG_LEVEL: "debug"
cap_add:
- SYS_PTRACE
networks:
bunkerd:
external: true