Parcourir la source

💚: fix docker not stopping containers

master
Adrien il y a 3 ans
Parent
révision
70077f1faf
1 fichiers modifiés avec 5 ajouts et 5 suppressions
  1. +5
    -5
      .drone.yml

+ 5
- 5
.drone.yml Voir le fichier

@@ -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:


Chargement…
Annuler
Enregistrer