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>
		
			
				
	
	
		
			48 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
services:
 | 
						|
  mmdl:
 | 
						|
    image: intriin/mmdl:latest
 | 
						|
    container_name: mmdl
 | 
						|
    restart: unless-stopped
 | 
						|
    depends_on:
 | 
						|
      - mmdl_db
 | 
						|
    env_file:
 | 
						|
      - .env.local
 | 
						|
    extra_hosts:
 | 
						|
      - "host.docker.internal:host-gateway"
 | 
						|
      - "{{ subdomains.auth }}:{{ docker.hairpin_ip }}"
 | 
						|
      - "{{ subdomains.cal }}:{{ docker.hairpin_ip }}"
 | 
						|
    labels:
 | 
						|
      glance.name: MMDL
 | 
						|
      glance.icon: si:task
 | 
						|
      glance.url: https://{{ subdomains.tasks }}/
 | 
						|
      glance.description: Task and calendar management
 | 
						|
      glance.id: mmdl
 | 
						|
      mag37.dockcheck.update: true
 | 
						|
 | 
						|
  mmdl_db:
 | 
						|
    image: mysql:8.0
 | 
						|
    container_name: mmdl_db
 | 
						|
    restart: unless-stopped
 | 
						|
    command: --default-authentication-plugin=mysql_native_password
 | 
						|
    environment:
 | 
						|
      MYSQL_DATABASE: mmdl
 | 
						|
      MYSQL_USER: mmdl
 | 
						|
      MYSQL_PASSWORD: "{{ vault_mmdl.mysql_password }}"
 | 
						|
      MYSQL_ROOT_PASSWORD: "{{ vault_mmdl.mysql_root_password }}"
 | 
						|
      MYSQL_ALLOW_EMPTY_PASSWORD: "yes"
 | 
						|
      MYSQL_ROOT_HOST: "%"
 | 
						|
    volumes:
 | 
						|
      - mmdl_db:/var/lib/mysql
 | 
						|
    labels:
 | 
						|
      glance.parent: mmdl
 | 
						|
      glance.name: DB
 | 
						|
      mag37.dockcheck.update: true
 | 
						|
 | 
						|
volumes:
 | 
						|
  mmdl_db:
 | 
						|
    driver: local
 | 
						|
 | 
						|
networks:
 | 
						|
  default:
 | 
						|
    external: true
 | 
						|
    name: {{ docker.network_name }} |