14 lines
510 B
Django/Jinja
14 lines
510 B
Django/Jinja
---
|
|
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 %} |