Upload files to "/"
This commit is contained in:
@@ -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
|
||||||
Reference in New Issue
Block a user