From fc408dfe3b48ebf30127202bf9ecf1d3bc43a924 Mon Sep 17 00:00:00 2001 From: gitea Date: Wed, 10 Jun 2026 01:36:30 +0800 Subject: [PATCH] Upload files to "/" --- compose.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 compose.yaml diff --git a/compose.yaml b/compose.yaml new file mode 100644 index 0000000..75a03f3 --- /dev/null +++ b/compose.yaml @@ -0,0 +1,15 @@ +version: '3.8' + +services: + csv-editor: + image: python:3.13-slim + container_name: finance-csv-editor + working_dir: /app + command: > + sh -c "pip install --no-cache-dir -r requirements.txt && python app.py" + ports: + - "5678:5000" + volumes: + # This grabs the files cloned from Gitea and drops them right into the app + - .:/app + restart: always \ No newline at end of file