#!/bin/bash#参数检查if[$#-ne1];thenecho"用法:$0<镜像版本>"exit1fi#配置参数IMAGE_NAME="xx.hub.cn/namespace/image_name"#镜像名称(按需修改)CONTAINER_PATH="/data"#容器内文件路径(按...