fix(CI): 测试删除上次镜像
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
9531e71dfb
commit
752702f32e
48
.drone.yml
48
.drone.yml
|
|
@ -3,28 +3,28 @@ type: docker
|
||||||
name: deployment
|
name: deployment
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: check
|
# - name: check
|
||||||
image: alpine
|
# image: alpine
|
||||||
commands:
|
# commands:
|
||||||
- ls -la
|
# - ls -la
|
||||||
- ls -la Dockerfile # 查看当前文件夹是否包含了Dockerfile
|
# - ls -la Dockerfile # 查看当前文件夹是否包含了Dockerfile
|
||||||
- name: publish
|
# - name: publish
|
||||||
image: plugins/docker
|
# image: plugins/docker
|
||||||
settings:
|
# settings:
|
||||||
username:
|
# username:
|
||||||
from_secret: nexus_username
|
# from_secret: nexus_username
|
||||||
password:
|
# password:
|
||||||
from_secret: nexus_password
|
# from_secret: nexus_password
|
||||||
pull: if-not-exists # 如果镜像不存在则拉取,免去每次都要重新下载
|
# pull: if-not-exists # 如果镜像不存在则拉取,免去每次都要重新下载
|
||||||
dockerfile: Dockerfile
|
# dockerfile: Dockerfile
|
||||||
tags: latest
|
# tags: latest
|
||||||
# you need insecure: true since we don't have a TLS certificate
|
# # you need insecure: true since we don't have a TLS certificate
|
||||||
insecure: true
|
# insecure: true
|
||||||
registry: 192.168.31.104:8082
|
# registry: 192.168.31.104:8082
|
||||||
repo: 192.168.31.104:8082/tiamo/user-point-management
|
# repo: 192.168.31.104:8082/tiamo/user-point-management
|
||||||
volumes: # 将容器内目录挂载到宿主机,仓库需要开启Trusted设置
|
# volumes: # 将容器内目录挂载到宿主机,仓库需要开启Trusted设置
|
||||||
- name: dockersock
|
# - name: dockersock
|
||||||
path: /var/run/docker.sock
|
# path: /var/run/docker.sock
|
||||||
- name: deploy
|
- name: deploy
|
||||||
pull: if-not-exists
|
pull: if-not-exists
|
||||||
image: appleboy/drone-ssh
|
image: appleboy/drone-ssh
|
||||||
|
|
@ -49,8 +49,8 @@ steps:
|
||||||
- docker stop user-point-management
|
- docker stop user-point-management
|
||||||
- echo 开始强制清除停止容器
|
- echo 开始强制清除停止容器
|
||||||
- docker container prune -f
|
- docker container prune -f
|
||||||
- echo 开始清除未使用镜像
|
- echo 开始清除镜像
|
||||||
- docker image prune -f
|
- docker rmi tiamo/user-point-management:latest
|
||||||
- echo 开始标签镜像
|
- echo 开始标签镜像
|
||||||
- docker tag 192.168.31.104:8082/tiamo/user-point-management tiamo/user-point-management:latest
|
- docker tag 192.168.31.104:8082/tiamo/user-point-management tiamo/user-point-management:latest
|
||||||
- echo 开始运行容器
|
- echo 开始运行容器
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue