You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

6 lines
176 B

# 创建镜像 并提交到你的镜像仓库
rm -rf result.zip
# built 镜像
docker build -t [你的仓库地址]:[TAG] .
# push 镜像
docker push [你的仓库地址]:[TAG]