stock-scraper / docker-compose.yml
sbasu2512's picture
intertwine the services
57384dd
Raw
History Blame Contribute Delete
635 Bytes
services:
api:
build: .
env_file:
- .env
environment:
DATABASE_URL: sqlite:////data/db/stock_predictions.db
MODEL_DIR: /app/model
STATIC_DATA_DIR: /app/static_data
ports:
- "8000:8000"
volumes:
- app_data:/data
command: uvicorn app.main:app --host 0.0.0.0 --port 8000
scheduler:
build: .
command: ["python", "-m", "jobs.scheduler"]
env_file:
- .env
environment:
DATABASE_URL: sqlite:////data/db/stock_predictions.db
MODEL_DIR: /app/model
STATIC_DATA_DIR: /app/static_data
volumes:
- app_data:/data
volumes:
app_data: