From cd70d3bf83764651ce991f1a724a0994250409c9 Mon Sep 17 00:00:00 2001 From: clover caruso Date: Thu, 11 Jun 2026 00:52:47 -0700 Subject: [PATCH] fix: forgejo image 13 -> 14, matching the database MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit the running container had been on a forgejo 14 image (db migration 44) while compose still said :13 — any recreate landed on the older image and crash-looped with 'database is for a newer version'. pin what's actually deployed. --- compose.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compose.yaml b/compose.yaml index 0f44e3c2348d8821ce9634cc42eeaa82f4fbc404..90c38ea652d7b7e1284d3ca61a364d2e2ee603a2 100755 --- a/compose.yaml +++ b/compose.yaml @@ -155,7 +155,7 @@ services: # git hosting forgejo: # port 3000 container_name: forgejo - image: code.forgejo.org/forgejo/forgejo:13 + image: code.forgejo.org/forgejo/forgejo:14 entrypoint: ["/bin/sh", "/custom/init/entry.sh"] ports: - 40244:3000 # port used for forgejo-runner @@ -852,7 +852,7 @@ services: # evil inc temporary infrastructure evil-forgejo: # port 3000 container_name: evil-forgejo - image: code.forgejo.org/forgejo/forgejo:13 + image: code.forgejo.org/forgejo/forgejo:14 entrypoint: ["/bin/sh", "/custom/init/entry.sh"] ports: - 40666:3000 # port used for forgejo-runner -- 2.54.0