Some checks failed
		
		
	
	/ Ansible Lint (push) Failing after 52s
				
			Use a full image source and set and explicit version for all images in Chaosknoten (docker-)compose files. With Renovate now set up, it is feasible to explicitly set versions.
		
			
				
	
	
		
			24 lines
		
	
	
	
		
			670 B
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			670 B
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
---
 | 
						|
services:
 | 
						|
  ntfy:
 | 
						|
    image: docker.io/binwiederhier/ntfy:v2.14.0
 | 
						|
    container_name: ntfy
 | 
						|
    command:
 | 
						|
      - serve
 | 
						|
    volumes:
 | 
						|
      - ntfy_cache:/var/cache/ntfy
 | 
						|
      - ntfy_var:/var/lib/ntfy
 | 
						|
      - ./configs/server.yml:/etc/ntfy/server.yml
 | 
						|
    ports:
 | 
						|
      - 2586:2586
 | 
						|
      - 9586:9586
 | 
						|
    healthcheck: # optional: remember to adapt the host:port to your environment
 | 
						|
        test: ["CMD-SHELL", "wget -q --tries=1 http://localhost:2586/v1/health -O - | grep -Eo '\"healthy\"\\s*:\\s*true' || exit 1"]
 | 
						|
        interval: 60s
 | 
						|
        timeout: 10s
 | 
						|
        retries: 3
 | 
						|
        start_period: 40s
 | 
						|
    restart: unless-stopped
 | 
						|
volumes:
 | 
						|
  ntfy_cache: {}
 | 
						|
  ntfy_var: {}
 |