- Update Authentik to 2025.6.4 - Update Dawarich and Karakeep to latest versions - Add Paperless-NGX backup with S3 storage - Improve GoToSocial backup configuration with better naming and retention - Add dockcheck update labels for automated container monitoring 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
		
			
				
	
	
		
			30 lines
		
	
	
		
			726 B
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			726 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.gotify }}:{{ docker.hairpin_ip }}"
 | 
						|
    labels:
 | 
						|
      glance.name: Apprise
 | 
						|
      glance.icon: si:imessage
 | 
						|
      glance.url: https://{{ subdomains.appriseapi }}/
 | 
						|
      glance.description: Apprise api server
 | 
						|
      glance.id: apprise
 | 
						|
      mag37.dockcheck.update: true
 | 
						|
volumes:
 | 
						|
  config:
 | 
						|
  attach:
 | 
						|
  plugin:
 | 
						|
networks:
 | 
						|
  default:
 | 
						|
    external: true
 | 
						|
    name: {{ docker.network_name }} |