From a5d4e0be62ffb1ef17cc945006ba7f640ee1ae82 Mon Sep 17 00:00:00 2001 From: Piotr Biernat Date: Sat, 13 Dec 2025 16:13:07 +0100 Subject: [PATCH] Updated ci/cd scripts --- deploy/scripts/image-build.sh | 4 ++-- deploy/scripts/image-push.sh | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/deploy/scripts/image-build.sh b/deploy/scripts/image-build.sh index 29c6a9b..f0969c5 100755 --- a/deploy/scripts/image-build.sh +++ b/deploy/scripts/image-build.sh @@ -1,8 +1,8 @@ #!/bin/sh # RUN IN REPO ROOT DIR !! -# export IMAGE_PREFIX="git.ego.freeddns.org/egommerce/identity" -export IMAGE_PREFIX="localhost:32000/egommerce/identity" +export IMAGE_PREFIX="git.pbiernat.space/egommerce/identity" +# export IMAGE_PREFIX="localhost:32000/egommerce/identity" export BUILDER_IMAGE="egommerce-builder:identity" export BUILD_TIME=$(date +"%Y%m%d%H%M%S") export SERVER_IMAGE="$IMAGE_PREFIX-svc" diff --git a/deploy/scripts/image-push.sh b/deploy/scripts/image-push.sh index d9c9295..a78dcca 100755 --- a/deploy/scripts/image-push.sh +++ b/deploy/scripts/image-push.sh @@ -1,13 +1,13 @@ #!/bin/sh # RUN IN REPO ROOT DIR !! -# export IMAGE_PREFIX="git.ego.freeddns.org/egommerce/identity" -export IMAGE_PREFIX="localhost:32000/egommerce/identity" +export IMAGE_PREFIX="git.pbiernat.space/egommerce/identity" +# export IMAGE_PREFIX="localhost:32000/egommerce/identity" export SERVER_IMAGE="$IMAGE_PREFIX-svc" TARGET=${1:-latest} -# echo $DOCKER_PASSWORD | docker login git.ego.freeddns.org -u $DOCKER_USERNAME --password-stdin +echo $DOCKER_PASSWORD | docker login git.pbiernat.space -u $DOCKER_USERNAME --password-stdin docker push "$SERVER_IMAGE:$TARGET"