PredictiveMaintanenceAgent / docker-compose.yml
Sahil Garg
Initial commit: Solar PV Predictive Maintenance API
7690851
raw
history blame contribute delete
231 Bytes
version: '3.8'
services:
pdm-api:
build: .
ports:
- "7860:7860"
environment:
- GOOGLE_API_KEY=${GOOGLE_API_KEY}
volumes:
- .:/app
command: uvicorn app:app --host 0.0.0.0 --port 7860 --reload