added audiobookshelf to stack

This commit is contained in:
2024-10-28 15:17:52 -06:00
parent 69395a324b
commit 1fe3f7bdd5
5 changed files with 53 additions and 1 deletions

View File

@ -0,0 +1,19 @@
- name: make audiobookshelf directories
ansible.builtin.file:
path: "{{ item}}"
state: directory
loop:
- /opt/stacks/audiobookshelf
- name: Template out the compose file
ansible.builtin.template:
src: audiobookshelf-compose.yml.j2
dest: /opt/stacks/audiobookshelf/compose.yml
owner: root
mode: 644
- name: deploy audiobookshelf stack
community.docker.docker_compose_v2:
project_src: /opt/stacks/audiobookshelf
files:
- compose.yml

View File

@ -108,4 +108,8 @@
- name: Install pinry
import_tasks: pinry.yml
tags: pinry
tags: pinry
- name: Install audiobookshelf
import_tasks: audiobookshelf.yml
tags: audiobookshelf