Migrate CI from Jenkins to Gitea Actions

Replaces the Jenkinsfile with a .gitea/workflows/build-push.yml that
builds on pushes to main and pushes `latest` + `sha-<short>` tags to the
Gitea package registry using the REGISTRY_URL variable and
REGISTRY_TOKEN secret. Adds a docker-compose.yml that pulls the
published image for deployment.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-24 10:20:31 -04:00
parent 6471d72b74
commit 6fa9b6f8b6
3 changed files with 45 additions and 54 deletions
+7
View File
@@ -0,0 +1,7 @@
services:
dayDrain:
image: gitea.thewrightserver.net/josh/workweekprogress:latest
container_name: day-drain
restart: unless-stopped
ports:
- "5000:5000"