42 lines
1023 B
YAML
42 lines
1023 B
YAML
|
|
version: '3.8'
|
||
|
|
|
||
|
|
services:
|
||
|
|
app:
|
||
|
|
build:
|
||
|
|
context: .
|
||
|
|
dockerfile: Dockerfile
|
||
|
|
ports:
|
||
|
|
- "8080:8080"
|
||
|
|
environment:
|
||
|
|
- DATABASE_URL=${DATABASE_URL}
|
||
|
|
- JWT_SECRET=${JWT_SECRET}
|
||
|
|
- STRIPE_SECRET_KEY=${STRIPE_SECRET_KEY}
|
||
|
|
- SMTP_HOST=${SMTP_HOST}
|
||
|
|
- SMTP_PORT=${SMTP_PORT}
|
||
|
|
- SMTP_USERNAME=${SMTP_USERNAME}
|
||
|
|
- SMTP_PASSWORD=${SMTP_PASSWORD}
|
||
|
|
- JITSI_APP_ID=${JITSI_APP_ID}
|
||
|
|
- JITSI_SECRET=${JITSI_SECRET}
|
||
|
|
depends_on:
|
||
|
|
postgres:
|
||
|
|
condition: service_healthy
|
||
|
|
restart: unless-stopped
|
||
|
|
|
||
|
|
postgres:
|
||
|
|
image: postgres:16-alpine
|
||
|
|
environment:
|
||
|
|
- POSTGRES_DB=${POSTGRES_DB:-videoconf}
|
||
|
|
- POSTGRES_USER=${POSTGRES_USER:-postgres}
|
||
|
|
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
|
||
|
|
volumes:
|
||
|
|
- postgres_data:/var/lib/postgresql/data
|
||
|
|
healthcheck:
|
||
|
|
test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER:-postgres}"]
|
||
|
|
interval: 10s
|
||
|
|
timeout: 5s
|
||
|
|
retries: 5
|
||
|
|
restart: unless-stopped
|
||
|
|
|
||
|
|
volumes:
|
||
|
|
postgres_data:
|