File size: 420 Bytes
3253ef3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | services:
app:
build: .
container_name: parox-app
restart: unless-stopped
ports:
- "3000:3000"
volumes:
- ./data:/app/data
- ./gcs-key.json:/app/gcs-key.json # Mount your service account key here
environment:
- APP_PASSWORD=${APP_PASSWORD:-parox}
- GCS_BUCKET_NAME=${GCS_BUCKET_NAME} # Set in .env or shell
- GOOGLE_APPLICATION_CREDENTIALS=/app/gcs-key.json
|