Browse Source

jk脚本

develop
H Vs 1 year ago
parent
commit
bd3bfc79be
3 changed files with 63 additions and 0 deletions
  1. +29
    -0
      health_monitor_run.sh
  2. +17
    -0
      setup_development.sh
  3. +17
    -0
      setup_test.sh

+ 29
- 0
health_monitor_run.sh View File

@@ -0,0 +1,29 @@
#!/bin/bash
environment=$1
version=$2
echo "环境变量为${environment},版本为$version!"
if [[ ${environment} == 'production' ]]; then
echo "开始远程构建容器"
docker stop health_monitor || true
docker rm health_monitor || true
docker rmi -f $(docker images | grep registry.cn-shanghai.aliyuncs.com/health_monitor | awk '{print $3}')
#docker login --username=telpo_linwl@1111649216405698 --password=telpo#1234 registry.cn-shanghai.aliyuncs.com
docker login --username=rzl_wangjx@1111649216405698 --password=telpo.123 registry.cn-shanghai.aliyuncs.com
docker pull registry.cn-shanghai.aliyuncs.com/health_monitor:$version
docker run --network=host -d -v /home/data/health_monitor/log:/var/health_monitor/logs --restart=always --name health_monitor registry.cn-shanghai.aliyuncs.com/health_monitor:$version --environment=production;
#删除产生的None镜像
docker rmi -f $(docker images | grep none | awk '{print $3}')
docker ps -a

elif [[ ${environment} == 'test' || ${environment} == 'presure' ]]; then
echo "开始在测试环境远程构建容器"
docker stop health_monitor || true
docker rm health_monitor || true
docker rmi -f $(docker images | grep 139.224.254.18:5000/health_monitor | awk '{print $3}')
docker pull 139.224.254.18:5000/health_monitor:$version
docker run --network=host -d -v /home/data/health_monitor/log:/var/health_monitor/logs --restart=always -e SKYWALKING__SERVICENAME=TEST::GpsCardGateway --name health_monitor 139.224.254.18:5000/health_monitor:$version --environment=${environment};
#删除产生的None镜像
docker rmi -f $(docker images | grep none | awk '{print $3}')
docker ps -a

fi

+ 17
- 0
setup_development.sh View File

@@ -0,0 +1,17 @@
#!/usr/bin/env bash
image_version=`date +%Y%m%d%H%M`;

docker stop health_monitor || true;
docker rm health_monitor || true;
# 删除镜像
docker rmi -f $(docker images | grep telpo/health_monitor | awk '{print $3}')

docker build -f ./HealthMonitor.WebApi/Dockerfile . -t telpo/health_monitor:$image_version;
# 启动容器
docker run --network=host -d -v /home/data/health_monitor/log:/var/health_monitor/logs --restart=always --name health_monitor telpo/health_monitor:$image_version --environment=Development
#删除产生的None镜像
docker rmi -f $(docker images | grep none | awk '{print $3}')
# 查看镜像列表
docker images;
# 查看日志
docker logs health_monitor;

+ 17
- 0
setup_test.sh View File

@@ -0,0 +1,17 @@
#!/usr/bin/env bash
image_version=$version
# 删除镜像
docker rmi -f $(
docker images | grep 139.224.254.18:5000/health_monitor | awk '{print $3}'
)
# 构建telpo/mrp:$image_version镜像
docker build -f ./HealthMonitor.WebApi/Dockerfile . -t telpo/health_monitor:$image_version
#TODO:推送镜像到私有仓库
echo '=================开始推送镜像======================='
docker tag telpo/health_monitor:$image_version 139.224.254.18:5000/health_monitor:$image_version
docker push 139.224.254.18:5000/health_monitor:$image_version
echo '=================推送镜像完成======================='
#删除产生的None镜像
docker rmi -f $(docker images | grep none | awk '{print $3}')
# 查看镜像列表
docker images

Loading…
Cancel
Save