use fully describes images names in container builds with Gradle

(cherry picked from commit 57edf92e30cd3e5bec594399b8a21fc1da31d549)
This commit is contained in:
2026-01-29 20:20:21 +01:00
committed by Thomas Peetz
parent 587539e8a0
commit 1338c56ee1
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
# ----------------------------------------------------------------------- # # ----------------------------------------------------------------------- #
FROM gradle:9.2-jdk AS builder FROM docker.io/library/gradle:9.2-jdk AS builder
WORKDIR / WORKDIR /
COPY ./src/ ./src/ COPY ./src/ ./src/
COPY ./build.gradle.kts ./ COPY ./build.gradle.kts ./
+1 -1
View File
@@ -1,5 +1,5 @@
# ----------------------------------------------------------------------- # # ----------------------------------------------------------------------- #
FROM gradle:8.7-jdk AS builder FROM docker.io/library/gradle:8.7-jdk AS builder
WORKDIR / WORKDIR /
COPY ./src/main/ ./src/main/ COPY ./src/main/ ./src/main/
COPY ./frontend/ ./frontend/ COPY ./frontend/ ./frontend/
+2 -2
View File
@@ -59,7 +59,7 @@ else
--health-interval=1s \ --health-interval=1s \
--health-timeout=5s \ --health-timeout=5s \
--health-retries=10 \ --health-retries=10 \
postgres:17 docker.io/library/postgres:17
fi fi
echo "==> Setting up container adminer" echo "==> Setting up container adminer"
@@ -68,7 +68,7 @@ if podman container exists adminer; then
echo " => adminer is running" echo " => adminer is running"
fi fi
else else
podman run -d --replace --pod kontor --name adminer adminer podman run -d --replace --pod kontor --name adminer docker.io/library/adminer
fi fi
echo "==> Setting up container activemq" echo "==> Setting up container activemq"