From 17d39cf6229f3c05ffd797f45c993e7e901998e6 Mon Sep 17 00:00:00 2001 From: sirius0xdev Date: Tue, 7 Jul 2026 18:36:12 -0400 Subject: [PATCH] CI: build all compose services (app+db) via docker compose build before deploy --- .forgejo/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/build.yml b/.forgejo/workflows/build.yml index 80f4aa9..b276602 100644 --- a/.forgejo/workflows/build.yml +++ b/.forgejo/workflows/build.yml @@ -20,6 +20,6 @@ jobs: # ship source to the Pi build dir ssh sirius@rpi.tail14a963.ts.net 'rm -rf /opt/siriusdevops/build/osint-dashboard && mkdir -p /opt/siriusdevops/build/osint-dashboard' scp -r . sirius@rpi.tail14a963.ts.net:/opt/siriusdevops/build/osint-dashboard/ - # build arm64 image on the Pi's native docker, then bring up the stack - ssh sirius@rpi.tail14a963.ts.net 'cd /opt/siriusdevops/build/osint-dashboard && docker build --platform linux/arm64 -t localhost/osint-dashboard:latest . && docker compose up -d --force-recreate && docker image prune -f' + # build arm64 images on the Pi's native docker, then bring up the stack + ssh sirius@rpi.tail14a963.ts.net 'cd /opt/siriusdevops/build/osint-dashboard && docker compose build --no-cache && docker compose up -d --force-recreate && docker image prune -f' echo 'osint-dashboard deployed'