- Update service count from 22+ to 25 across documentation - Add vault.yml to gitignore for security - Add notifications configuration for AppriseAPI integration - Add jq package to common role dependencies - Add hairpin networking fix for AppriseAPI chat subdomain access - Remove diun service references from monitoring category - Update project completion status in todo.md 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
30 lines
694 B
Django/Jinja
30 lines
694 B
Django/Jinja
services:
|
|
apprise:
|
|
container_name: apprise
|
|
ports:
|
|
- {{ network.docker_host_ip }}:8000:8000
|
|
environment:
|
|
- APPRISE_STATEFUL_MODE=simple
|
|
- APPRISE_WORKER_COUNT=1
|
|
volumes:
|
|
- config:/config
|
|
- plugin:/plugin
|
|
- attach:/attach
|
|
image: caronc/apprise:latest
|
|
extra_hosts:
|
|
- "{{ subdomains.chat }}:{{ docker.hairpin_ip }}"
|
|
labels:
|
|
glance.name: Apprise
|
|
glance.icon: si:imessage
|
|
glance.url: https://{{ subdomains.appriseapi }}/
|
|
glance.description: Apprise api server
|
|
glance.id: apprise
|
|
|
|
volumes:
|
|
config:
|
|
attach:
|
|
plugin:
|
|
networks:
|
|
default:
|
|
external: true
|
|
name: {{ docker.network_name }} |