mirror of
https://github.com/davestephens/ansible-nas
synced 2025-01-12 11:38:47 +00:00
Booksonic starts and stops
This commit is contained in:
parent
b8fcfd30c0
commit
ca36ac0701
4 changed files with 48 additions and 34 deletions
1
nas.yml
1
nas.yml
|
@ -56,7 +56,6 @@
|
|||
- role: booksonic
|
||||
tags:
|
||||
- booksonic
|
||||
when: (booksonic_enabled | default(False))
|
||||
|
||||
- role: calibre
|
||||
tags:
|
||||
|
|
|
@ -17,3 +17,6 @@ booksonic_hostname: "booksonic"
|
|||
|
||||
# specs
|
||||
booksonic_memory: 1g
|
||||
|
||||
# docker
|
||||
booksonic_container_name: booksonic
|
||||
|
|
9
roles/booksonic/handlers/main.yml
Normal file
9
roles/booksonic/handlers/main.yml
Normal file
|
@ -0,0 +1,9 @@
|
|||
---
|
||||
- name: Stop Booksonic
|
||||
docker_container:
|
||||
name: "{{ booksonic_container_name }}"
|
||||
state: absent
|
||||
when: booksonic_enabled is false
|
||||
listen:
|
||||
- "stop booksonic"
|
||||
- "stop disabled applications"
|
|
@ -1,4 +1,6 @@
|
|||
---
|
||||
- name: Booksonic
|
||||
block:
|
||||
- name: Create Booksonic Directories
|
||||
file:
|
||||
path: "{{ item }}"
|
||||
|
@ -10,7 +12,7 @@
|
|||
|
||||
- name: Booksonic Docker Container
|
||||
docker_container:
|
||||
name: booksonic
|
||||
name: "{{ booksonic_container_name }}"
|
||||
image: linuxserver/booksonic-air:latest
|
||||
pull: true
|
||||
volumes:
|
||||
|
@ -33,3 +35,4 @@
|
|||
traefik.http.routers.booksonic.tls.domains[0].main: "{{ ansible_nas_domain }}"
|
||||
traefik.http.routers.booksonic.tls.domains[0].sans: "*.{{ ansible_nas_domain }}"
|
||||
traefik.http.services.booksonic.loadbalancer.server.port: "4040"
|
||||
when: booksonic_enabled is true
|
||||
|
|
Loading…
Reference in a new issue