Upload files to "/"

This commit is contained in:
Thierry 2026-04-01 21:36:06 +02:00
parent 6e7ecfa2b7
commit 721dd0404c
5 changed files with 653 additions and 0 deletions

30
docker-compose.yml Normal file
View file

@ -0,0 +1,30 @@
services:
backend_entwine:
build:
context: .
dockerfile: Dockerfile.entwine
container_name: pointcloud-backend-htmx
ports:
- "8090:8000"
volumes:
- ./backend:/app/backend
environment:
- HOST_DATA_DIR=/app/backend/data
restart: unless-stopped
frontend_htmx:
build:
context: .
dockerfile: Dockerfile.frontend
container_name: pointcloud-frontend-htmx
ports:
- "8091:8080"
volumes:
- ./frontend:/app/frontend
environment:
- MAX_UPLOAD_SIZE_GB=10
- BACKEND_URL=http://backend_entwine:8000
depends_on:
- backend_entwine
restart: unless-stopped