Dateien nach "/" hochladen

This commit is contained in:
2026-09-07 08:19:41 +02:00
parent cfb0ba7af1
commit b9750b7fb0
4 changed files with 118 additions and 0 deletions

17
docker-compose.yml Normal file
View File

@@ -0,0 +1,17 @@
services:
app:
build: .
container_name: 3d-project-manager
ports:
- "8080:8080"
volumes:
# Your projects live here as plain folders on your desktop.
# Set PROJECTS_DIR in the .env file to an absolute path, e.g.
# PROJECTS_DIR=/home/yourname/3d-projects
- ${PROJECTS_DIR}:/data/projects
# App-internal state only, not your files. Stays inside Docker.
- app-settings:/data/settings
restart: unless-stopped
volumes:
app-settings: