Files
ansible/roles/docker/templates/audiobookshelf-compose.yml.j2
Phil 336e197176 feat: add dockcheck update labels and fix Gotify service names
- Add mag37.dockcheck.update labels to audiobookshelf, caddy, gitea services
- Fix Gotify container names in Caddyfile routing
- Add explicit container names for gotify and igotify-assistant services
- Update Authentik to version 2025.6.3
- Fix environment variable format in gotify-compose template

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-23 11:26:17 -06:00

32 lines
755 B
Django/Jinja

services:
audiobookshelf:
image: ghcr.io/advplyr/audiobookshelf:latest
volumes:
- audiobooks:/audiobooks
- podcasts:/podcasts
- config:/config
- metadata:/metadata
environment:
- TZ=America/Denver
- DISABLE_SSRF_REQUEST_FILTER=1
extra_hosts:
- '{{ subdomains.auth }}:172.20.0.5'
labels:
glance.name: Audiobookshelf
glance.icon: si:audiobookshelf
glance.url: https://{{ subdomains.audio }}/
glance.description: Audio book server
mag37.dockcheck.update: true
volumes:
audiobooks:
driver: local
podcasts:
driver: local
config:
driver: local
metadata:
driver: local
networks:
default:
external: true
name: {{ docker.network_name }}