Add calibre compose file

This commit is contained in:
Jake Howard 2020-02-05 20:37:01 +00:00
parent e0b8b7961a
commit e6a659e4cb
Signed by: jake
GPG Key ID: 57AFB45680EDD477
3 changed files with 52 additions and 0 deletions

View 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"

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

View File

@ -30,3 +30,6 @@
- name: Install traefik
include: traefik.yml
- name: Install calibre
include: calibre.yml