From 370464853271df9a81800686627f4186ad43f132 Mon Sep 17 00:00:00 2001 From: jowj Date: Tue, 4 Dec 2018 12:53:20 -0600 Subject: [PATCH] Change docker kill line; was looking for anything that was up before --- deployments/mojobot/mojo.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployments/mojobot/mojo.yml b/deployments/mojobot/mojo.yml index 8e09d7a..060bb23 100644 --- a/deployments/mojobot/mojo.yml +++ b/deployments/mojobot/mojo.yml @@ -18,6 +18,6 @@ shell: cd ~/mojojojo-bot && docker build -t mojo -f docker/dockerfile . - name: Check if there are any existing mojo containers running and kill it # this has to be a shell because command: isn't interactive - shell: docker ps | grep -E 'Up|Restarting' | awk '{print $1}' | xargs docker kill + shell: docker ps | grep 'mojo' | awk '{print $1}' | xargs docker kill - name: Run the newly built docker container command: docker container run -e "SLACK_BOT_TOKEN={{ VAULT_SLACK_BOT_TOKEN }}" --restart "always" -d --mount source=towervol,target=/shared/ mojo