Dateien nach "/" hochladen
This commit is contained in:
17
docker-compose.yml
Normal file
17
docker-compose.yml
Normal 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:
|
||||
Reference in New Issue
Block a user