Add calibre compose file

This commit is contained in:
Jake Howard
2020-02-05 20:37:01 +00:00
parent e0b8b7961a
commit e6a659e4cb
3 changed files with 52 additions and 0 deletions

View File

@ -0,0 +1,31 @@
- name: Create calibre directory
file:
path: '/opt/calibre'
state: directory
owner: "{{ docker_user.name }}"
mode: "{{ docker_compose_directory_mask }}"
become: true
become_user: root
- name: Install calibre compose file
template:
src: files/calibre/docker-compose.yml
dest: "/opt/calibre/docker-compose.yml"
mode: "{{ docker_compose_file_mask }}"
owner: "{{ docker_user.name }}"
validate: /usr/bin/docker-compose -f %s config
register: compose_file
become: true
become_user: root
- name: Cycle calibre container
docker_compose:
project_src: /opt/calibre
pull: true
remove_orphans: true
remove_volumes: true
state: "{{ item }}"
when: compose_file.changed
loop:
- absent
- present