From b320af79ee5d302716bac6ccb31ff08e00975557 Mon Sep 17 00:00:00 2001 From: Xe Iaso Date: Sat, 19 Jul 2025 04:48:43 +0000 Subject: [PATCH] test(caddy): fix automated testing? Signed-off-by: Xe Iaso --- test/caddy/docker-compose.yaml | 2 +- test/lib/lib.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/caddy/docker-compose.yaml b/test/caddy/docker-compose.yaml index 65fbe4c..4fa758d 100644 --- a/test/caddy/docker-compose.yaml +++ b/test/caddy/docker-compose.yaml @@ -7,7 +7,7 @@ services: - 8443:443 anubis: - image: ko.local/anubis + image: ghcr.io/techarohq/anubis environment: BIND: ":3000" TARGET: http://httpdebug:3000 diff --git a/test/lib/lib.sh b/test/lib/lib.sh index 4838d9d..24ef968 100644 --- a/test/lib/lib.sh +++ b/test/lib/lib.sh @@ -14,7 +14,7 @@ trap cleanup EXIT SIGINT function build_anubis_ko() { ( cd ../.. && - KO_DOCKER_REPO=ko.local/anubis VERSION=devel ko build \ + VERSION=devel ko build \ --platform=all \ --base-import-paths \ --tags="latest" \ @@ -22,7 +22,7 @@ function build_anubis_ko() { --image-annotation="" \ --image-label="" \ ./cmd/anubis \ - -L + --local ) }