parox / docker-compose.yml
glutamatt's picture
glutamatt HF Staff
view more in comment
a350ec8 verified
raw
history blame contribute delete
420 Bytes
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