api-gateway/deploy/image-push.sh
Piotr Biernat 85377e241b
All checks were successful
continuous-integration/drone/push Build is passing
deploy script fix
2022-12-02 22:39:13 +01:00

10 lines
243 B
Bash
Executable File

#!/bin/sh
# RUN IN REPO ROOT DIR !!
export IMAGE_NAME="git.pbiernat.dev/egommerce/api-gateway"
TARGET=${1:-latest}
echo $DOCKER_PASSWORD | docker login git.pbiernat.dev -u $DOCKER_USERNAME --password-stdin
docker push "$IMAGE_NAME:$TARGET"