13 lines
348 B
Bash
Executable File
13 lines
348 B
Bash
Executable File
#!/bin/sh
|
|
# RUN IN REPO ROOT DIR !!
|
|
|
|
export IMAGE_NAME="git.pbiernat.io/egommerce/api-eventbus"
|
|
|
|
TARGET=${1:-latest}
|
|
|
|
echo $DOCKER_PASSWORD | docker login git.pbiernat.io -u $DOCKER_USERNAME --password-stdin
|
|
docker push "$IMAGE_NAME:$TARGET"
|
|
|
|
# Restart container
|
|
curl -X POST http://127.0.0.1:9001/api/webhooks/2d456377-d438-4617-88fc-8d06657e4f45
|