- Update remaining Docker Compose templates with centralized variables - Fix service tag isolation to deploy individual services only - Update all README files with variable management architecture - Document variable hierarchy in DEPLOYMENT_LEARNINGS.md - Add comprehensive variable usage patterns to CLAUDE.md - Standardize domain references using {{ subdomains.* }} pattern - Replace hardcoded network names with {{ docker.network_name }} - Update hairpinning configuration to use variables 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
28 lines
621 B
Django/Jinja
28 lines
621 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
|
|
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 }} |