fix(docker): add JWT_SECRET to evolution-service environment
Both user-service and evolution-service need the same JWT_SECRET to verify admin tokens correctly. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
28df6fb89c
commit
d3d2944b03
|
|
@ -322,6 +322,7 @@ services:
|
||||||
POSTGRES_DB: ${POSTGRES_DB:-iconsulting}
|
POSTGRES_DB: ${POSTGRES_DB:-iconsulting}
|
||||||
DATABASE_URL: postgresql://${POSTGRES_USER:-postgres}:${POSTGRES_PASSWORD:-postgres}@postgres:5432/${POSTGRES_DB:-iconsulting}
|
DATABASE_URL: postgresql://${POSTGRES_USER:-postgres}:${POSTGRES_PASSWORD:-postgres}@postgres:5432/${POSTGRES_DB:-iconsulting}
|
||||||
REDIS_URL: redis://:${REDIS_PASSWORD:-redis123}@redis:6379
|
REDIS_URL: redis://:${REDIS_PASSWORD:-redis123}@redis:6379
|
||||||
|
JWT_SECRET: ${JWT_SECRET:-your-jwt-secret-key}
|
||||||
ANTHROPIC_API_KEY: ${ANTHROPIC_API_KEY}
|
ANTHROPIC_API_KEY: ${ANTHROPIC_API_KEY}
|
||||||
ANTHROPIC_BASE_URL: ${ANTHROPIC_BASE_URL:-https://api.anthropic.com}
|
ANTHROPIC_BASE_URL: ${ANTHROPIC_BASE_URL:-https://api.anthropic.com}
|
||||||
ports:
|
ports:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue