Merged in feature/debug-queryapi (pull request #170)

new compose and dockerfile

* new compose and dockerfile

* add  task docker:build:debug

* update readme

* Merged main into feature/debug-queryapi
This commit is contained in:
Jay Brown
2025-06-30 21:00:49 +00:00
parent 3e64ea7944
commit 79e0085fb3
4 changed files with 153 additions and 2 deletions
+5 -2
View File
@@ -255,8 +255,8 @@ services:
- server-network
query_api:
image: queryorchestration:latest
command: ["./queryAPI"]
image: queryorchestration:debug
command: ["/dlv", "exec", "./queryAPI", "--listen=:2345", "--headless", "--api-version=2", "--accept-multiclient", "--continue"]
depends_on:
localstack:
condition: service_healthy
@@ -264,10 +264,13 @@ services:
condition: service_healthy
ports:
- "8080:8080"
- "2345:2345"
expose:
- 8080
- 2345
environment:
LOG_LEVEL: DEBUG
DEBUG: true
CLIENT_SYNC_URL: ${CLIENT_SYNC_URL}
QUERY_VERSION_SYNC_URL: ${QUERY_VERSION_SYNC_URL}
AWS_ACCESS_KEY_ID: ${AWS_ACCESS_KEY_ID}