Use lowercase CI image registry owner for Docker compatibility #45

Merged
brian merged 1 commits from cursor/fix-ci-registry-owner-lowercase into main 2026-07-10 13:13:03 +02:00
3 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ on:
env: env:
REGISTRY: gitea.lille-vemmelund.dk REGISTRY: gitea.lille-vemmelund.dk
REGISTRY_USER: ci-bot REGISTRY_USER: ci-bot
IMAGE: gitea.lille-vemmelund.dk/LilleVemmelund/python-repositories-ci IMAGE: gitea.lille-vemmelund.dk/lillevemmelund/python-repositories-ci
jobs: jobs:
build-and-push: build-and-push:
+5 -5
View File
@@ -14,10 +14,10 @@ Built from [`docker/ci/Dockerfile`](../docker/ci/Dockerfile):
- Docker CLI (integration tests via testcontainers) - Docker CLI (integration tests via testcontainers)
- Dev dependencies from `uv.lock` (`uv sync --all-extras --no-install-project`) - Dev dependencies from `uv.lock` (`uv sync --all-extras --no-install-project`)
Published to the Gitea container registry: Published to the Gitea container registry (owner segment must be lowercase for Docker):
- `gitea.lille-vemmelund.dk/LilleVemmelund/python-repositories-ci:latest` - `gitea.lille-vemmelund.dk/lillevemmelund/python-repositories-ci:latest`
- `gitea.lille-vemmelund.dk/LilleVemmelund/python-repositories-ci:YYYYMMDDHHmm` (timestamped rollback tag) - `gitea.lille-vemmelund.dk/lillevemmelund/python-repositories-ci:YYYYMMDDHHmm` (timestamped rollback tag)
## Rebuild triggers ## Rebuild triggers
@@ -108,7 +108,7 @@ homelab-platform
[`platform/gitea-runners/values.yaml`](https://gitea.lille-vemmelund.dk/LilleVemmelund/homelab-platform/src/branch/main/platform/gitea-runners/values.yaml): [`platform/gitea-runners/values.yaml`](https://gitea.lille-vemmelund.dk/LilleVemmelund/homelab-platform/src/branch/main/platform/gitea-runners/values.yaml):
```yaml ```yaml
python-repositories-ci:docker://gitea.lille-vemmelund.dk/LilleVemmelund/python-repositories-ci:latest python-repositories-ci:docker://gitea.lille-vemmelund.dk/lillevemmelund/python-repositories-ci:latest
``` ```
After label changes, roll runner pods so they re-register with Gitea. After label changes, roll runner pods so they re-register with Gitea.
@@ -137,7 +137,7 @@ bash scripts/ci/build-ci-image.sh --push
``` ```
Run from the repo root on the branch you want to test. Runners pull Run from the repo root on the branch you want to test. Runners pull
`gitea.lille-vemmelund.dk/LilleVemmelund/python-repositories-ci:latest` from the registry; `gitea.lille-vemmelund.dk/lillevemmelund/python-repositories-ci:latest` from the registry;
they do not care which git branch built it. they do not care which git branch built it.
Override registry settings if needed: Override registry settings if needed:
+2 -2
View File
@@ -15,7 +15,7 @@
# Optional overrides: # Optional overrides:
# REGISTRY=gitea.lille-vemmelund.dk # REGISTRY=gitea.lille-vemmelund.dk
# REGISTRY_USER=ci-bot # REGISTRY_USER=ci-bot
# IMAGE_OWNER=LilleVemmelund # IMAGE_OWNER=lillevemmelund
# IMAGE_NAME=python-repositories-ci # IMAGE_NAME=python-repositories-ci
set -euo pipefail set -euo pipefail
@@ -24,7 +24,7 @@ REPO_ROOT="$(cd "${SCRIPT_DIR}/../.." && pwd)"
REGISTRY="${REGISTRY:-gitea.lille-vemmelund.dk}" REGISTRY="${REGISTRY:-gitea.lille-vemmelund.dk}"
REGISTRY_USER="${REGISTRY_USER:-ci-bot}" REGISTRY_USER="${REGISTRY_USER:-ci-bot}"
IMAGE_OWNER="${IMAGE_OWNER:-LilleVemmelund}" IMAGE_OWNER="${IMAGE_OWNER:-lillevemmelund}"
IMAGE_NAME="${IMAGE_NAME:-python-repositories-ci}" IMAGE_NAME="${IMAGE_NAME:-python-repositories-ci}"
IMAGE="${IMAGE:-${REGISTRY}/${IMAGE_OWNER}/${IMAGE_NAME}}" IMAGE="${IMAGE:-${REGISTRY}/${IMAGE_OWNER}/${IMAGE_NAME}}"