Add beginning work on deploying arke.

pull/1/head
jowj 6 years ago
parent 0095e1d6c5
commit ab1357956c

@ -0,0 +1,17 @@
- name: Deploy Arke
hosts: dockerhosts
remote_user: josiah
tasks:
- name: Get hostname for troubleshooting
command: hostname
register: hostname
- debug: msg="{{ hostname.stdout }}"
- name: Pull latest version from github
shell: cd /home/josiah/arke/ && git pull
- name: Build from the latest version
shell: cd ~/arke/ && docker build -t arke -f docker/dockerfile .
- name: Check if there are any existing arke containers running and kill it
# this has to be a shell because command: isn't interactive
shell: docker ps | grep 'arke' | awk '{print $1}' | xargs docker kill
- name: Run the newly built docker container
command: docker run -d --name arke --mount source=towervol,target=/shared/ arke:latest

@ -0,0 +1,16 @@
all:
children:
dockerhosts:
hosts:
monitoring.awful.club:
vars:
ansible_ssh_common_args: '-o ProxyCommand="ssh -W %h:%p -q ansible@ssh.awful.club"'
macs:
hosts:
hydra-ling:
windows:
hosts:
lurker-ling:
linux:
hosts:
ling-bane:
Loading…
Cancel
Save