Files
crypto-atr-signal/docker-compose.yml
T
2026-06-22 22:52:21 +02:00

11 lines
256 B
YAML

services:
web:
image: python:3.11-slim
working_dir: /app
command: sh -c "pip install -r requirements.txt && uvicorn webapp:app --host 0.0.0.0 --port 8000"
ports:
- "8000:8000"
volumes:
- .:/app
restart: unless-stopped