diff --git a/Build/Scripts/runTests.sh b/Build/Scripts/runTests.sh index 2e82bd5..8033a4d 100755 --- a/Build/Scripts/runTests.sh +++ b/Build/Scripts/runTests.sh @@ -432,7 +432,7 @@ fi mkdir -p .cache mkdir -p .Build/Web/typo3temp/var/tests -IMAGE_PHP="ghcr.io/typo3/core-testing-$(echo "php${PHP_VERSION}" | sed -e 's/\.//'):latest" +IMAGE_PHP="ghcr.io/sbuerk/demo-core-testing-$(echo "php${PHP_VERSION}" | sed -e 's/\.//'):latest" IMAGE_ALPINE="docker.io/alpine:3.8" IMAGE_DOCS="ghcr.io/t3docs/render-documentation:latest" IMAGE_MARIADB="docker.io/mariadb:${DBMS_VERSION}" @@ -612,12 +612,12 @@ case ${TEST_SUITE} in ;; update) # pull typo3/core-testing-*:latest versions of those ones that exist locally - echo "> pull ghcr.io/typo3/core-testing-*:latest versions of those ones that exist locally" - ${CONTAINER_BIN} images ghcr.io/typo3/core-testing-*:latest --format "{{.Repository}}:latest" | xargs -I {} ${CONTAINER_BIN} pull {} + echo "> pull ghcr.io/sbuerk/demo-core-testing-*:latest versions of those ones that exist locally" + ${CONTAINER_BIN} images ghcr.io/sbuerk/demo-core-testing-*:latest --format "{{.Repository}}:latest" | xargs -I {} ${CONTAINER_BIN} pull {} echo "" # remove "dangling" typo3/core-testing-* images (those tagged as ) - echo "> remove \"dangling\" ghcr.io/typo3/core-testing-* images (those tagged as )" - ${CONTAINER_BIN} images ghcr.io/typo3/core-testing-* --filter "dangling=true" --format "{{.ID}}" | xargs -I {} ${CONTAINER_BIN} rmi {} + echo "> remove \"dangling\" ghcr.io/sbuerk/demo-core-testing-* images (those tagged as )" + ${CONTAINER_BIN} images ghcr.io/sbuerk/demo-core-testing-* --filter "dangling=true" --format "{{.ID}}" | xargs -I {} ${CONTAINER_BIN} rmi {} echo "" ;; *)