Update docker-compose.yml

This commit is contained in:
Manuel
2025-09-19 21:34:12 +02:00
committed by GitHub
parent d6e4ff5086
commit f006623fdb

View File

@@ -1,6 +1,5 @@
version: "3.9" version: "3.9"
services: services:
# The FastAPI Web Server
web: web:
image: loredcast/filewizard:latest image: loredcast/filewizard:latest
build: . build: .
@@ -11,13 +10,12 @@ services:
- SECRET_KEY= # if using auth - SECRET_KEY= # if using auth
- UPLOADS_DIR=/app/uploads - UPLOADS_DIR=/app/uploads
- PROCESSED_DIR=/app/processed - PROCESSED_DIR=/app/processed
#user: "1000:1000" #user: "1000:1000"
ports: ports:
- "6969:8000" - "6969:8000"
volumes: volumes:
# Mount local directories and files into the container for persistence # Mount local directories and files into the container for persistence
- ./config:/app/config - ./config:/app/config #you can copy settings.default.yml into here as settings.yml
- ./uploads_data:/app/uploads - ./uploads_data:/app/uploads
- ./processed_data:/app/processed - ./processed_data:/app/processed