Jake Howard
86a398d6b4
The docker-compose integration would start 2 of the same container, which does bad things to things like databases!
17 lines
482 B
YAML
17 lines
482 B
YAML
- name: Create install directory
|
|
file:
|
|
path: /opt/watchtower
|
|
state: directory
|
|
owner: "{{ docker_user.name }}"
|
|
mode: "{{ docker_compose_directory_mask }}"
|
|
become: true
|
|
|
|
- name: Install compose file
|
|
template:
|
|
src: files/docker-compose.yml
|
|
dest: /opt/watchtower/docker-compose.yml
|
|
mode: "{{ docker_compose_file_mask }}"
|
|
owner: "{{ docker_user.name }}"
|
|
validate: /usr/bin/docker-compose -f %s config
|
|
notify: restart watchtower
|
|
become: true
|