From 9745ed75a8944695ec4e829a78e743ea6b0ae69e Mon Sep 17 00:00:00 2001 From: 0xWheatyz Date: Thu, 2 Apr 2026 20:27:56 -0400 Subject: [PATCH] feat(docker): add registry images to compose services Add gitea.leeworks.dev image references alongside build directives so `docker compose up` pulls pre-built images while `--build` still builds from local sources. --- docker-compose.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index cff35c7..ce7d077 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -18,6 +18,7 @@ services: restart: unless-stopped init-db: + image: gitea.leeworks.dev/0xwheatyz/sparc:latest build: . container_name: sparc-init-db command: python scripts/init_database.py @@ -29,6 +30,7 @@ services: restart: "no" api: + image: gitea.leeworks.dev/0xwheatyz/sparc:latest build: . container_name: sparc-api command: uvicorn SPARC.api:app --host 0.0.0.0 --port 8000 @@ -76,6 +78,7 @@ services: - s3 dashboard: + image: gitea.leeworks.dev/0xwheatyz/sparc:frontend-latest build: ./frontend container_name: sparc-dashboard ports: