17 lines
563 B
YAML
17 lines
563 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
api:
|
|
build: .
|
|
ports:
|
|
- "8000:8000"
|
|
volumes:
|
|
- .:/app
|
|
- ${GOOGLE_APPLICATION_CREDENTIALS:-./firestore-credentials.json}:/app/firestore-credentials.json:ro
|
|
environment:
|
|
- PYTHONUNBUFFERED=1
|
|
- ENVIRONMENT=development
|
|
- FIRESTORE_CREDENTIALS_FILE=/app/firestore-credentials.json
|
|
- GOOGLE_APPLICATION_CREDENTIALS=/app/firestore-credentials.json
|
|
- FIRESTORE_PROJECT_ID=${FIRESTORE_PROJECT_ID:-}
|
|
command: uvicorn main:app --host 0.0.0.0 --port 8000 --reload |