added portals, quest tracking, discord monitor etc etc
This commit is contained in:
parent
72de9b0f7f
commit
dffd295091
312 changed files with 4130 additions and 7 deletions
|
|
@ -26,7 +26,7 @@ services:
|
|||
DB_MAX_SQL_VARIABLES: "${DB_MAX_SQL_VARIABLES}"
|
||||
DB_WAL_AUTOCHECKPOINT_PAGES: "${DB_WAL_AUTOCHECKPOINT_PAGES}"
|
||||
SHARED_SECRET: "${SHARED_SECRET}"
|
||||
LOG_LEVEL: "${LOG_LEVEL:-INFO}"
|
||||
LOG_LEVEL: "DEBUG"
|
||||
INVENTORY_SERVICE_URL: "http://inventory-service:8000"
|
||||
restart: unless-stopped
|
||||
logging:
|
||||
|
|
@ -70,7 +70,7 @@ services:
|
|||
- "./inventory-service:/app"
|
||||
environment:
|
||||
DATABASE_URL: "postgresql://inventory_user:${INVENTORY_DB_PASSWORD}@inventory-db:5432/inventory_db"
|
||||
LOG_LEVEL: "${LOG_LEVEL:-INFO}"
|
||||
LOG_LEVEL: "DEBUG"
|
||||
restart: unless-stopped
|
||||
logging:
|
||||
driver: "json-file"
|
||||
|
|
@ -102,6 +102,26 @@ services:
|
|||
max-size: "10m"
|
||||
max-file: "3"
|
||||
|
||||
# Discord Rare Monitor Bot: Monitors rare discoveries and posts to Discord
|
||||
discord-rare-monitor:
|
||||
build: ./discord-rare-monitor
|
||||
depends_on:
|
||||
- dereth-tracker
|
||||
environment:
|
||||
DISCORD_RARE_BOT_TOKEN: "${DISCORD_RARE_BOT_TOKEN}"
|
||||
DERETH_TRACKER_WS_URL: "ws://dereth-tracker:8765/ws/live"
|
||||
COMMON_RARE_CHANNEL_ID: "${COMMON_RARE_CHANNEL_ID:-1355328792184226014}"
|
||||
GREAT_RARE_CHANNEL_ID: "${GREAT_RARE_CHANNEL_ID:-1353676584334131211}"
|
||||
ACLOG_CHANNEL_ID: "${ACLOG_CHANNEL_ID:-1349649482786275328}"
|
||||
MONITOR_CHARACTER: "${MONITOR_CHARACTER:-Dunking Rares}"
|
||||
LOG_LEVEL: "INFO"
|
||||
restart: unless-stopped
|
||||
logging:
|
||||
driver: "json-file"
|
||||
options:
|
||||
max-size: "10m"
|
||||
max-file: "3"
|
||||
|
||||
# Grafana service for visualization and dashboards
|
||||
grafana:
|
||||
image: grafana/grafana:latest
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue