services: csv-editor: image: python:3.13-slim container_name: finance-csv-editor working_dir: /app ports: - "5678:5000" volumes: # We point Docker directly to Dockhand's exact internal cloning folder - /app/data/stacks/local-lxc/finance-suite:/app restart: always command: > sh -c "pip install --no-cache-dir -r requirements.txt && python app.py"