fix with coolify magic env var

This commit is contained in:
k
2026-04-21 19:55:00 +08:00
parent 0782aed4e6
commit b250bdb4d1
+6 -8
View File
@@ -5,15 +5,16 @@ services:
restart: unless-stopped restart: unless-stopped
environment: environment:
POSTGRES_DB: trumpsignal POSTGRES_DB: trumpsignal
POSTGRES_USER: trumpsignal POSTGRES_USER: $SERVICE_USER_POSTGRES
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD} POSTGRES_PASSWORD: $SERVICE_PASSWORD_POSTGRES
volumes: volumes:
- postgres_data:/var/lib/postgresql/data - postgres_data:/var/lib/postgresql/data
healthcheck: healthcheck:
test: ["CMD-SHELL", "pg_isready -U trumpsignal"] test: ["CMD-SHELL", "pg_isready -U trumpsignal -d trumpsignal"]
interval: 5s interval: 5s
timeout: 5s timeout: 5s
retries: 10 retries: 20 # up to 100s total wait
start_period: 20s # don't count failures during first 20s of startup
api: api:
build: . build: .
@@ -32,15 +33,12 @@ services:
AI_MODEL: ${AI_MODEL:-claude-sonnet-4-6} AI_MODEL: ${AI_MODEL:-claude-sonnet-4-6}
HL_MAINNET: ${HL_MAINNET:-true} HL_MAINNET: ${HL_MAINNET:-true}
ENVIRONMENT: ${ENVIRONMENT:-production} ENVIRONMENT: ${ENVIRONMENT:-production}
volumes:
# Persist SQLite only if you're still using it (dev fallback).
# In production with Postgres this volume isn't needed.
- api_data:/app/data
healthcheck: healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8000/api/health"] test: ["CMD", "curl", "-f", "http://localhost:8000/api/health"]
interval: 15s interval: 15s
timeout: 5s timeout: 5s
retries: 5 retries: 5
start_period: 30s
volumes: volumes:
postgres_data: postgres_data: