- Configure dockcheck for automatic updates instead of check-only mode - Add dockcheck update labels to Calibre and Changedetection services - Enable OnlyLabel and AutoMode for targeted container management 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
		
			
				
	
	
		
			30 lines
		
	
	
		
			714 B
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			714 B
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
---
 | 
						|
services:
 | 
						|
  calibre-web:
 | 
						|
    image: lscr.io/linuxserver/calibre-web:latest
 | 
						|
    container_name: calibre-web
 | 
						|
    environment:
 | 
						|
      - PUID=1000
 | 
						|
      - PGID=1000
 | 
						|
      - TZ=Etc/UTC
 | 
						|
      - DOCKER_MODS=linuxserver/mods:universal-calibre #optional
 | 
						|
      - OAUTHLIB_RELAX_TOKEN_SCOPE=1 #optional
 | 
						|
    volumes:
 | 
						|
      - config:/config
 | 
						|
      - books:/books
 | 
						|
    restart: unless-stopped
 | 
						|
    labels:
 | 
						|
      glance.name: Calibre
 | 
						|
      glance.icon: si:calibreweb
 | 
						|
      glance.url: https://{{ subdomains.books }}/
 | 
						|
      glance.description: Book server
 | 
						|
      mag37.dockcheck.update: true
 | 
						|
volumes:
 | 
						|
  config:
 | 
						|
    driver: local
 | 
						|
  books:
 | 
						|
    driver: local
 | 
						|
networks:
 | 
						|
  default:
 | 
						|
    external: true
 | 
						|
    name: {{ docker.network_name }} |