From 2a1270bfbd4c649e0551731c703e785542713221 Mon Sep 17 00:00:00 2001 From: Matt Date: Mon, 22 Dec 2025 16:13:26 +0100 Subject: [PATCH] Use pre-built image from Gitea registry MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Switch from local build to code.letsbe.solutions/letsbe/hub:latest Remove development volume mount (not needed with pre-built image) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- docker-compose.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index a51d675..a873361 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,7 +2,7 @@ version: "3.8" services: api: - build: . + image: code.letsbe.solutions/letsbe/hub:latest container_name: letsbe-hub-api environment: - DATABASE_URL=postgresql+asyncpg://hub:hub@db:5432/hub @@ -13,8 +13,6 @@ services: depends_on: db: condition: service_healthy - volumes: - - ./app:/app/app:ro restart: unless-stopped db: