mirror of
https://github.com/davestephens/ansible-nas
synced 2025-01-26 10:15:14 +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,5 +1,7 @@
|
|||
---
|
||||
- name: Create Booksonic Directories
|
||||
- name: Booksonic
|
||||
block:
|
||||
- name: Create Booksonic Directories
|
||||
file:
|
||||
path: "{{ item }}"
|
||||
state: directory
|
||||
|
@ -8,9 +10,9 @@
|
|||
- "{{ booksonic_data_directory }}/data"
|
||||
- "{{ booksonic_data_directory }}/playlists"
|
||||
|
||||
- name: Booksonic Docker Container
|
||||
- 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