Files
historical-prices/compose.yaml
T
2026-06-10 01:50:46 +08:00

12 lines
284 B
YAML

services:
csv-editor:
image: python:3.13-slim
container_name: finance-csv-editor
working_dir: /app
ports:
- "5678:5000"
volumes:
- .:/app
restart: always
command: >
sh -c "pip install --no-cache-dir -r requirements.txt && python app.py"