2022-01-30 10:09:30 +08:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
TAG="$1"
|
|
|
|
|
|
|
|
|
|
if [ ! -n "$TAG" ]; then
|
|
|
|
|
echo "MUST INPUT THE IMAGE TAG"
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|
|
|
|
|
|
2022-02-11 17:53:05 +08:00
|
|
|
echo "start pull and stop and replace hertzbeat container"
|
|
|
|
|
docker pull registry.cn-hangzhou.aliyuncs.com/tomsun28/hertzbeat:"$TAG"
|
|
|
|
|
docker stop hertzbeat
|
|
|
|
|
docker rm hertzbeat
|
2022-02-18 18:09:18 +08:00
|
|
|
docker run -d -p 11157:1157 -v /home/ubuntu/hertzbeat/application.yml:/opt/hertzbeat/config/application.yml --name hertzbeat registry.cn-hangzhou.aliyuncs.com/tomsun28/hertzbeat:"$TAG"
|