18 lines
502 B
YAML
18 lines
502 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
api:
|
|
build: .
|
|
ports:
|
|
- "8000:8000"
|
|
environment:
|
|
- DATABASE_URL=postgresql://postgres:postgres@host.docker.internal:5433/jira_fixer_v2
|
|
- REDIS_URL=redis://host.docker.internal:6379
|
|
- JWT_SECRET=dev-secret-change-in-production
|
|
- RESEND_API_KEY=${RESEND_API_KEY}
|
|
- OPENROUTER_API_KEY=${OPENROUTER_API_KEY}
|
|
- GITEA_URL=https://gitea.startdata.com.br
|
|
- GITEA_TOKEN=${GITEA_TOKEN}
|
|
volumes:
|
|
- ./app:/app/app:ro
|