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 API
backend: backend:
image: theluap/minio-webui-backend:latest build:
context: ./backend
dockerfile: ../docker/Dockerfile.backend
environment: environment:
- NODE_ENV=production - NODE_ENV=production
- PORT=3000 - PORT=3000
@@ -63,7 +65,9 @@ services:
# Frontend (nginx + React) # Frontend (nginx + React)
frontend: frontend:
image: theluap/minio-webui-frontend:latest build:
context: ./frontend
dockerfile: ../docker/Dockerfile.frontend
depends_on: depends_on:
- backend - backend
restart: unless-stopped restart: unless-stopped