htmx/docker-compose.yml
2026-04-01 21:36:06 +02:00

30 lines
668 B
YAML

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