feat: Add Drone CI pipeline for automated image builds
continuous-integration/drone/push Build is failing

- Add .drone.yml to build and push to local registry
- Update docker-compose.prod.yml to use registry image
This commit is contained in:
Paul Nothaft
2026-01-04 22:56:24 +01:00
parent b4014b802f
commit 18bbc13e1c
2 changed files with 14 additions and 4 deletions
+13
View File
@@ -0,0 +1,13 @@
kind: pipeline
type: docker
name: default
steps:
- name: build minio-webui
image: plugins/docker
settings:
repo: registry.local.nothaft.cloud/minio-webui
tags: latest
dockerfile: Dockerfile
context: .
registry: registry.local.nothaft.cloud
+1 -4
View File
@@ -15,10 +15,7 @@ services:
# Combined app (backend + frontend)
app:
image: minio-webui:latest
build:
context: .
dockerfile: Dockerfile
image: registry.local.nothaft.cloud/minio-webui:latest
environment:
- NODE_ENV=production
- PORT=3000