- Add mag37.dockcheck.update labels to audiobookshelf, caddy, gitea services - Fix Gotify container names in Caddyfile routing - Add explicit container names for gotify and igotify-assistant services - Update Authentik to version 2025.6.3 - Fix environment variable format in gotify-compose template 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
		
			
				
	
	
		
			32 lines
		
	
	
		
			690 B
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			690 B
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
services:
 | 
						|
  caddy:
 | 
						|
    image: caddy:2-alpine
 | 
						|
    restart: unless-stopped
 | 
						|
    ports:
 | 
						|
      - "80:80"
 | 
						|
      - "443:443"
 | 
						|
      - "443:443/udp"
 | 
						|
      - "8448:8448"
 | 
						|
      - "8448:8448/udp"
 | 
						|
    volumes:
 | 
						|
      - ./Caddyfile:/etc/caddy/Caddyfile
 | 
						|
      - ./site:/srv
 | 
						|
      - caddy_data:/data
 | 
						|
      - caddy_config:/config
 | 
						|
    labels:
 | 
						|
      glance.name: Caddy
 | 
						|
      glance.icon: si:caddy
 | 
						|
      glance.url: https://{{ primary_domain }}/
 | 
						|
      glance.description: Reverse proxy
 | 
						|
      mag37.dockcheck.update: true
 | 
						|
    networks:
 | 
						|
      default:
 | 
						|
        ipv4_address: {{ docker.hairpin_ip }}
 | 
						|
volumes:
 | 
						|
  caddy_data:
 | 
						|
  caddy_config:
 | 
						|
 | 
						|
networks:
 | 
						|
  default:
 | 
						|
    external: true
 | 
						|
    name: {{ docker.network_name }} |