Add calibre compose file
This commit is contained in:
parent
e0b8b7961a
commit
e6a659e4cb
3 changed files with 52 additions and 0 deletions
18
ansible/roles/docker/files/calibre/docker-compose.yml
Normal file
18
ansible/roles/docker/files/calibre/docker-compose.yml
Normal file
|
@ -0,0 +1,18 @@
|
|||
version: "2"
|
||||
services:
|
||||
calibre:
|
||||
image: linuxserver/calibre-web:0.6.5-ls47
|
||||
container_name: calibre
|
||||
environment:
|
||||
- PUID={{ docker_user.id }}
|
||||
- PGID={{ docker_user.id }}
|
||||
- TZ=Europe/London
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- ./config:/config
|
||||
- /srv/nextcloud-data/data/jake/files/EBooks:/books:ro
|
||||
labels:
|
||||
- "traefik.enable=true"
|
||||
- "traefik.http.routers.calibre.rule=Host(`calibre.jakehoward.tech`)"
|
||||
- "traefik.http.routers.calibre.tls=true"
|
||||
- "traefik.http.routers.calibre.tls.certresolver=le"
|
31
ansible/roles/docker/tasks/calibre.yml
Normal file
31
ansible/roles/docker/tasks/calibre.yml
Normal 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
|
|
@ -30,3 +30,6 @@
|
|||
|
||||
- name: Install traefik
|
||||
include: traefik.yml
|
||||
|
||||
- name: Install calibre
|
||||
include: calibre.yml
|
||||
|
|
Loading…
Reference in a new issue