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