Add mag37.dockcheck.update labels to enable automated container update monitoring for: - Gotify iOS assistant service - Karakeep (Hoarder) bookmark manager and all components (Chrome, Meilisearch) - MMDL task management service - Postiz social media scheduler and all components (PostgreSQL, Redis) This completes the rollout of dockcheck labels across all Docker services for consistent update monitoring. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
		
			
				
	
	
		
			47 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
services:
 | 
						|
  gotify:
 | 
						|
    image: gotify/server:latest
 | 
						|
    container_name: gotify
 | 
						|
    restart: unless-stopped
 | 
						|
    volumes:
 | 
						|
      - gotify_data:/app/data
 | 
						|
    environment:
 | 
						|
      - GOTIFY_DEFAULTUSER_PASS={{ vault_gotify.admin_password }}
 | 
						|
      - TZ=America/Denver
 | 
						|
    labels:
 | 
						|
      glance.name: Gotify
 | 
						|
      glance.icon: si:gotify
 | 
						|
      glance.url: "https://{{ subdomains.gotify }}/"
 | 
						|
      glance.description: Push notification server
 | 
						|
    extra_hosts:
 | 
						|
      - "{{ subdomains.auth }}:{{ docker.hairpin_ip }}"
 | 
						|
      - "{{ subdomains.gotify_assistant }}:{{ docker.hairpin_ip }}"
 | 
						|
 | 
						|
  igotify-assistant:
 | 
						|
    image: ghcr.io/androidseb25/igotify-notification-assist:latest
 | 
						|
    restart: unless-stopped
 | 
						|
    container_name: igotify-assistant
 | 
						|
    volumes:
 | 
						|
      - igotify_data:/app/data
 | 
						|
    environment:
 | 
						|
      TZ: America/Denver
 | 
						|
    depends_on:
 | 
						|
      - gotify
 | 
						|
    labels:
 | 
						|
      glance.name: iGotify Assistant
 | 
						|
      glance.icon: si:apple
 | 
						|
      glance.url: "https://{{ subdomains.gotify_assistant }}/"
 | 
						|
      glance.description: iOS notification assistant
 | 
						|
      mag37.dockcheck.update: true
 | 
						|
    extra_hosts:
 | 
						|
      - "{{ subdomains.auth }}:{{ docker.hairpin_ip }}"
 | 
						|
      - "{{ subdomains.gotify }}:{{ docker.hairpin_ip }}"
 | 
						|
 | 
						|
volumes:
 | 
						|
  gotify_data:
 | 
						|
  igotify_data:
 | 
						|
 | 
						|
networks:
 | 
						|
  default:
 | 
						|
    external: true
 | 
						|
    name: "{{ docker.network_name }}" |