initial commit

This commit is contained in:
hiperman
2026-01-30 15:07:31 -05:00
commit 7844cc4416
83 changed files with 3802 additions and 0 deletions
@@ -0,0 +1,14 @@
---
services:
audiobookshelf:
image: "ghcr.io/advplyr/audiobookshelf:{{ audiobookshelf_container_version }}"
container_name: "{{ audiobookshelf_container_name }}"
restart: "{{ audiobookshelf_restart_policy }}"
ports:
- "{{ audiobookshelf_http_port }}:80"
volumes:
- "{{ audiobookshelf_config_path }}:/config"
- "{{ audiobookshelf_metadata_path }}:/metadata"
{% for item in audiobookshelf_libraries %}
- "{{ item.host_path }}:{{ item.container_path }}"
{% endfor %}