소스 검색

💚: fix docker not stopping containers

master
Adrien 3 년 전
부모
커밋
70077f1faf
1개의 변경된 파일5개의 추가작업 그리고 5개의 파일을 삭제
  1. +5
    -5
      .drone.yml

+ 5
- 5
.drone.yml 파일 보기

@@ -13,14 +13,14 @@ server:

steps:

- name: Build new image
commands:
- docker build . -f Dockerfile.production --tag="nexus-timers"

- name: Stop and destroy old container
failure: ignore
commands:
- docker ps -a | grep nexus-timers | awk '{system ("docker stop " $1); system ("docker rm " $1)}'
- docker ps -a | grep nexus-timers | awk '{system ("docker stop " $1); system ("docker rm " $1)}'

- name: Build new image
commands:
- docker build . -f Dockerfile.production --tag="nexus-timers"

- name: Launch new container
commands:


불러오는 중...
취소
저장