From 3075495d1cb68b859933e4cf97e53a2955102182 Mon Sep 17 00:00:00 2001 From: Kyle Pope Date: Wed, 18 Mar 2026 17:42:02 +0800 Subject: [PATCH] =?UTF-8?q?Remove=20build:=20directives=20=E2=80=94=20imag?= =?UTF-8?q?es=20pulled=20from=20Gitea=20registry=20only?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit All builds now go through the CI/CD pipeline. The compose file only needs image: to pull pre-built images from the registry. Co-Authored-By: Claude Opus 4.6 (1M context) --- docker-compose.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/docker-compose.yaml b/docker-compose.yaml index 46da7b0..58b9872 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -23,7 +23,6 @@ services: backend: image: git.sentinelforest.xyz/rohskiddo/umbra-backend:main-latest - build: ./backend restart: unless-stopped environment: - DATABASE_URL=postgresql+asyncpg://${POSTGRES_USER}:${POSTGRES_PASSWORD}@db:5432/${POSTGRES_DB} @@ -54,7 +53,6 @@ services: frontend: image: git.sentinelforest.xyz/rohskiddo/umbra-frontend:main-latest - build: ./frontend restart: unless-stopped ports: - "80:8080"