46 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| version: "3.7"
 | |
| services:
 | |
|   readarr:
 | |
|     image: lscr.io/linuxserver/readarr:0.3.14-nightly
 | |
|     container_name: readarr
 | |
|     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}:8787
 | |
|     restart: unless-stopped
 | |
|     networks:
 | |
|       - tipi_main_network
 | |
|     labels:
 | |
|       # Main
 | |
|       traefik.enable: true
 | |
|       traefik.http.middlewares.readarr-web-redirect.redirectscheme.scheme: https
 | |
|       traefik.http.services.readarr.loadbalancer.server.port: 8787
 | |
|       # Web
 | |
|       traefik.http.routers.readarr-insecure.rule: Host(`${APP_DOMAIN}`)
 | |
|       traefik.http.routers.readarr-insecure.entrypoints: web
 | |
|       traefik.http.routers.readarr-insecure.service: readarr
 | |
|       traefik.http.routers.readarr-insecure.middlewares: readarr-web-redirect
 | |
|       # Websecure
 | |
|       traefik.http.routers.readarr.rule: Host(`${APP_DOMAIN}`)
 | |
|       traefik.http.routers.readarr.entrypoints: websecure
 | |
|       traefik.http.routers.readarr.service: readarr
 | |
|       traefik.http.routers.readarr.tls.certresolver: myresolver
 | |
|       # Local domain
 | |
|       traefik.http.routers.readarr-local-insecure.rule: Host(`readarr.${LOCAL_DOMAIN}`)
 | |
|       traefik.http.routers.readarr-local-insecure.entrypoints: web
 | |
|       traefik.http.routers.readarr-local-insecure.service: readarr
 | |
|       traefik.http.routers.readarr-local-insecure.middlewares: readarr-web-redirect
 | |
|       # Local domain secure
 | |
|       traefik.http.routers.readarr-local.rule: Host(`readarr.${LOCAL_DOMAIN}`)
 | |
|       traefik.http.routers.readarr-local.entrypoints: websecure
 | |
|       traefik.http.routers.readarr-local.service: readarr
 | |
|       traefik.http.routers.readarr-local.tls: true
 | 
