2018-05-29 03:52:42 +00:00
|
|
|
- name: Deploy Mojo JoJo
|
|
|
|
hosts: dockerhosts
|
|
|
|
vars_files:
|
|
|
|
- mojo-vars-vault.yml
|
2018-05-22 03:26:12 +00:00
|
|
|
remote_user: josiah
|
|
|
|
tasks:
|
2018-10-07 06:31:49 +00:00
|
|
|
- name: print hostname
|
|
|
|
command: hostname
|
|
|
|
register: hostname
|
|
|
|
- debug: msg="{{ hostname.stdout }}"
|
2019-05-30 22:44:17 +00:00
|
|
|
- name: Pull latest version from github, or log an error if the dir doesn't exist'
|
2018-10-07 18:13:15 +00:00
|
|
|
shell: cd /home/josiah/mojojojo-bot/ && git pull
|
2019-05-30 22:44:17 +00:00
|
|
|
register: result
|
|
|
|
ignore_errors: True
|
|
|
|
- name: If previous step failed, clone repo down
|
|
|
|
shell: cd /home/josiah/ && git clone https://github.com/jowj/mojojojo-bot.git
|
|
|
|
when: result is failed
|
2018-05-22 03:26:12 +00:00
|
|
|
- name: Build from the latest version
|
2018-10-07 06:31:49 +00:00
|
|
|
shell: cd ~/mojojojo-bot && docker build -t mojo -f docker/dockerfile .
|
2018-06-02 16:03:54 +00:00
|
|
|
- name: Check if there are any existing mojo containers running and kill it
|
2018-06-02 16:36:48 +00:00
|
|
|
# this has to be a shell because command: isn't interactive
|
2018-12-04 18:53:20 +00:00
|
|
|
shell: docker ps | grep 'mojo' | awk '{print $1}' | xargs docker kill
|
2019-05-30 22:44:17 +00:00
|
|
|
ignore_errors: True
|
2018-05-22 03:26:12 +00:00
|
|
|
- name: Run the newly built docker container
|
2019-05-30 22:44:17 +00:00
|
|
|
command: docker container run -e "SLACK_BOT_TOKEN={{ VAULT_SLACK_BOT_TOKEN }}" --restart "always" -d --mount type="bind",source="/mnt/volume_sfo2_znc",target=/shared/ mojo
|