Update grep to look for Up OR Restarting.
This commit is contained in:
parent
baa1c24092
commit
7fc631463e
@ -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 'Up' | awk '{print $1}' | xargs docker kill
|
||||
shell: docker ps | grep -e 'Up|Restarting' | 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 mojo
|
||||
|
Loading…
Reference in New Issue
Block a user