Some checks failed
Linting and tests / Linting (push) Failing after 37s
28 lines
650 B
YAML
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
|