2018-11-15 18:43:36 +00:00
|
|
|
- name: deploy znc server
|
2018-11-15 03:28:10 +00:00
|
|
|
hosts: dockerhosts
|
|
|
|
remote_user: josiah
|
|
|
|
tasks:
|
|
|
|
- name: update or create the directory
|
2018-11-15 18:42:11 +00:00
|
|
|
shell: cd /home/josiah/znc-docker/ && git pull
|
2018-11-15 03:28:10 +00:00
|
|
|
register: result
|
|
|
|
ignore_errors: True
|
|
|
|
|
|
|
|
# if the folder doesn't exist, clone source.
|
|
|
|
- command: cd /home/josiah && git clone https://github.com/jowj/znc-docker.git
|
|
|
|
when: result is failed
|
|
|
|
- name: build from latest version
|
2018-11-15 18:45:15 +00:00
|
|
|
shell: cd ~/znc-docker/full && docker build -t znc -f Dockerfile .
|
2018-11-15 03:28:10 +00:00
|
|
|
- name: Check if there are any existing mojo containers running and kill it
|
|
|
|
shell: docker ps | grep 'znc' | awk '{print $1}' | xargs docker kill
|
|
|
|
- name: Remove any existing containers using the znc name, its mine and i must have it
|
|
|
|
# this has to be a shell because command: isn't interactive
|
|
|
|
shell: docker container rm znc
|
|
|
|
- name: run the container (assumes the volume is already set up)
|
|
|
|
command: docker run -d -p 5000:5000 -v znc-cfg:/znc-data znc
|
|
|
|
|