Piotr Biernat
1c68b310b7
All checks were successful
continuous-integration/drone/push Build is passing
8 lines
221 B
Bash
Executable File
8 lines
221 B
Bash
Executable File
#!/bin/sh
|
|
# RUN IN REPO ROOT DIR !!
|
|
|
|
export IMAGE_NAME="git.pbiernat.dev/egommerce/api-gateway"
|
|
|
|
echo $DOCKER_PASSWORD | docker login git.pbiernat.dev -u $DOCKER_USERNAME --password-stdin
|
|
docker push "$IMAGE_NAME:latest"
|