* feat(halo): change config to support local domain * feat(hammond): change config to support local domain * feat(haven): change config to support local domain * feat(hedgedoc): change config to support local domain * feat(hello-world): change config to support local domain * feat(homarr): change config to support local domain * feat(homebox): change config to support local domain * feat(immich): change config to support local domain * feat(invidious): change config to support local domain * feat(it-tools): change config to support local domain * feat(jackett): change config to support local domain * feat(jellyseerr): change config to support local domain * feat(joplin): change config to support local domain * feat(kandboard): change config to support local domain * feat(kapowarr): change config to support local domain * feat(kavita): change config to support local domain * feat(libreddit): change config to support local domain * feat(librephotos): change config to support local domain * feat(libretranslate): change config to support local domain * feat(lidarr): change config to support local domain * feat(lidarr-deemix): change config to support local domain * feat(linkstack): change config to support local domain * feat(lodestone-core): change config to support local domain
		
			
				
	
	
		
			45 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
version: "3.7"
 | 
						|
 | 
						|
services:
 | 
						|
  lidarr-deemix:
 | 
						|
    image: youegraillot/lidarr-on-steroids:1.2.8
 | 
						|
    container_name: lidarr-deemix
 | 
						|
    volumes:
 | 
						|
      - ${APP_DATA_DIR}/data/config:/config
 | 
						|
      - ${APP_DATA_DIR}/data/config-deemix:/config_deemix
 | 
						|
      - ${ROOT_FOLDER_HOST}/media/downloads/deemix:/downloads
 | 
						|
      - ${ROOT_FOLDER_HOST}/media/data/music:/music
 | 
						|
      - ${ROOT_FOLDER_HOST}/media/usenet/completed/:/downloads/completed
 | 
						|
      - ${ROOT_FOLDER_HOST}/media:/media
 | 
						|
    ports:
 | 
						|
      - ${APP_PORT}:8686 # Lidarr web UI
 | 
						|
      - 8187:6595 # Deemix web UI
 | 
						|
    restart: unless-stopped
 | 
						|
    networks:
 | 
						|
      - tipi_main_network
 | 
						|
    labels:
 | 
						|
      # Main
 | 
						|
      traefik.enable: true
 | 
						|
      traefik.http.middlewares.lidarr-deemix-web-redirect.redirectscheme.scheme: https
 | 
						|
      traefik.http.services.lidarr-deemix.loadbalancer.server.port: 8686
 | 
						|
      # Web
 | 
						|
      traefik.http.routers.lidarr-deemix-insecure.rule: Host(`${APP_DOMAIN}`)
 | 
						|
      traefik.http.routers.lidarr-deemix-insecure.entrypoints: web
 | 
						|
      traefik.http.routers.lidarr-deemix-insecure.service: lidarr-deemix
 | 
						|
      traefik.http.routers.lidarr-deemix-insecure.middlewares: lidarr-deemix-web-redirect
 | 
						|
      # Websecure
 | 
						|
      traefik.http.routers.lidarr-deemix.rule: Host(`${APP_DOMAIN}`)
 | 
						|
      traefik.http.routers.lidarr-deemix.entrypoints: websecure
 | 
						|
      traefik.http.routers.lidarr-deemix.service: lidarr-deemix
 | 
						|
      traefik.http.routers.lidarr-deemix.tls.certresolver: myresolver
 | 
						|
      # Local domain
 | 
						|
      traefik.http.routers.lidarr-deemix-local-insecure.rule: Host(`lidarr-deemix.${LOCAL_DOMAIN}`)
 | 
						|
      traefik.http.routers.lidarr-deemix-local-insecure.entrypoints: web
 | 
						|
      traefik.http.routers.lidarr-deemix-local-insecure.service: lidarr-deemix
 | 
						|
      traefik.http.routers.lidarr-deemix-local-insecure.middlewares: lidarr-deemix-web-redirect
 | 
						|
      # Local domain secure
 | 
						|
      traefik.http.routers.lidarr-deemix-local.rule: Host(`lidarr-deemix.${LOCAL_DOMAIN}`)
 | 
						|
      traefik.http.routers.lidarr-deemix-local.entrypoints: websecure
 | 
						|
      traefik.http.routers.lidarr-deemix-local.service: lidarr-deemix
 | 
						|
      traefik.http.routers.lidarr-deemix-local.tls: true
 |