chore: Use build from source instead of pre-built images

This commit is contained in:
Paul Nothaft
2026-01-04 22:34:03 +01:00
parent 9bdbeefa8d
commit 86a4d24ec1
+6 -2
View File
@@ -18,7 +18,9 @@ services:
# Backend API
backend:
image: theluap/minio-webui-backend:latest
build:
context: ./backend
dockerfile: ../docker/Dockerfile.backend
environment:
- NODE_ENV=production
- PORT=3000
@@ -63,7 +65,9 @@ services:
# Frontend (nginx + React)
frontend:
image: theluap/minio-webui-frontend:latest
build:
context: ./frontend
dockerfile: ../docker/Dockerfile.frontend
depends_on:
- backend
restart: unless-stopped