23 lines
515 B
YAML
23 lines
515 B
YAML
|
|
version: "3.8"
|
||
|
|
services:
|
||
|
|
falah-mobile:
|
||
|
|
build: .
|
||
|
|
image: falah-mobile:latest
|
||
|
|
ports:
|
||
|
|
- "4011:3000"
|
||
|
|
environment:
|
||
|
|
- NODE_ENV=production
|
||
|
|
- JWT_SECRET=${JWT_SECRET:-flh-dev-jwt-secret-change-in-prod}
|
||
|
|
- DATABASE_URL=file:./dev.db
|
||
|
|
volumes:
|
||
|
|
- falah-mobile-data:/app/data
|
||
|
|
restart: unless-stopped
|
||
|
|
healthcheck:
|
||
|
|
test: ["CMD", "curl", "-f", "http://localhost:3000/api/health"]
|
||
|
|
interval: 30s
|
||
|
|
timeout: 10s
|
||
|
|
retries: 3
|
||
|
|
|
||
|
|
volumes:
|
||
|
|
falah-mobile-data:
|