starting to implement the queue job service

This commit is contained in:
Bojan Kucera 2025-06-08 13:35:07 -04:00
parent c10a524aa8
commit 8681c34529
9 changed files with 458 additions and 20 deletions

View file

@ -60,11 +60,6 @@ services:
environment:
- QDB_TELEMETRY_ENABLED=false
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:9000/status"]
interval: 30s
timeout: 10s
retries: 3
networks:
- trading-bot-network
@ -179,7 +174,6 @@ services:
restart: unless-stopped
networks:
- trading-bot-network
# Grafana - Visualization for logs and metrics
grafana:
image: grafana/grafana:10.2.0
@ -201,6 +195,24 @@ services:
networks:
- trading-bot-network
# Bull Board - Queue monitoring
bull-board:
image: deadly0/bull-board
container_name: trading-bot-bull-board
ports:
- "3001:3000"
environment:
- REDIS_HOST=dragonfly
- REDIS_PORT=6379
- REDIS_PASSWORD=
- REDIS_DB=0
- REDIS_URL=redis://dragonfly:6379
depends_on:
- dragonfly
restart: unless-stopped
networks:
- trading-bot-network
volumes:
postgres_data:
questdb_data: