![renovate[bot]](/assets/img/avatar_default.png) 64038c44ca
			
		
	
	
		64038c44ca
		
			
		
	
	
	
	
		
			
			* chore(deps): update lscr.io/linuxserver/radarr docker tag to v4.5.2 * Update app version --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: github-action update-app-version <githubaction@githubaction.com>
		
			
				
	
	
		
			28 lines
		
	
	
		
			786 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			786 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| version: "3.7"
 | |
| services:
 | |
|   radarr:
 | |
|     image: lscr.io/linuxserver/radarr:4.5.2
 | |
|     container_name: radarr
 | |
|     environment:
 | |
|       - PUID=1000
 | |
|       - PGID=1000
 | |
|       - TZ=${TZ}
 | |
|     dns:
 | |
|       - ${DNS_IP}
 | |
|     volumes:
 | |
|       - /etc/localtime:/etc/localtime:ro
 | |
|       - ${APP_DATA_DIR}/data:/config
 | |
|       - ${ROOT_FOLDER_HOST}/media:/media
 | |
|     ports:
 | |
|       - ${APP_PORT}:7878
 | |
|     restart: unless-stopped
 | |
|     networks:
 | |
|       - tipi_main_network
 | |
|     labels:
 | |
|       traefik.enable: ${APP_EXPOSED}
 | |
|       traefik.http.routers.radarr.rule: Host(`${APP_DOMAIN}`)
 | |
|       traefik.http.routers.radarr.entrypoints: websecure
 | |
|       traefik.http.routers.radarr.service: radarr
 | |
|       traefik.http.routers.radarr.tls.certresolver: myresolver
 | |
|       traefik.http.services.radarr.loadbalancer.server.port: 7878
 |