test(caddy): fix automated testing?

Signed-off-by: Xe Iaso <me@xeiaso.net>
This commit is contained in:
Xe Iaso 2025-07-19 04:48:43 +00:00
parent cf510eeace
commit b320af79ee
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@ services:
- 8443:443
anubis:
image: ko.local/anubis
image: ghcr.io/techarohq/anubis
environment:
BIND: ":3000"
TARGET: http://httpdebug:3000

View File

@ -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
)
}