73 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			73 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| version: "3"
 | |
| 
 | |
| services:
 | |
|   your-spotify:
 | |
|     container_name: your-spotify
 | |
|     image: yooooomi/your_spotify_client:1.7.3
 | |
|     depends_on:
 | |
|       - your-spotify-server
 | |
|     restart: unless-stopped
 | |
|     ports:
 | |
|       - ${APP_PORT}:3000
 | |
|     environment:
 | |
|       - API_ENDPOINT=http://${INTERNAL_IP}:32500
 | |
|     networks:
 | |
|       - tipi_main_network
 | |
|     labels:
 | |
|       # Main
 | |
|       traefik.enable: true
 | |
|       traefik.http.middlewares.your-spotify-web-redirect.redirectscheme.scheme: https
 | |
|       traefik.http.services.your-spotify.loadbalancer.server.port: 3000
 | |
|       # Web
 | |
|       traefik.http.routers.your-spotify-insecure.rule: Host(`${APP_DOMAIN}`)
 | |
|       traefik.http.routers.your-spotify-insecure.entrypoints: web
 | |
|       traefik.http.routers.your-spotify-insecure.service: your-spotify
 | |
|       traefik.http.routers.your-spotify-insecure.middlewares: your-spotify-web-redirect
 | |
|       # Websecure
 | |
|       traefik.http.routers.your-spotify.rule: Host(`${APP_DOMAIN}`)
 | |
|       traefik.http.routers.your-spotify.entrypoints: websecure
 | |
|       traefik.http.routers.your-spotify.service: your-spotify
 | |
|       traefik.http.routers.your-spotify.tls.certresolver: myresolver
 | |
|       # Local domain
 | |
|       traefik.http.routers.your-spotify-local-insecure.rule: Host(`your-spotify.${LOCAL_DOMAIN}`)
 | |
|       traefik.http.routers.your-spotify-local-insecure.entrypoints: web
 | |
|       traefik.http.routers.your-spotify-local-insecure.service: your-spotify
 | |
|       traefik.http.routers.your-spotify-local-insecure.middlewares: your-spotify-web-redirect
 | |
|       # Local domain secure
 | |
|       traefik.http.routers.your-spotify-local.rule: Host(`your-spotify.${LOCAL_DOMAIN}`)
 | |
|       traefik.http.routers.your-spotify-local.entrypoints: websecure
 | |
|       traefik.http.routers.your-spotify-local.service: your-spotify
 | |
|       traefik.http.routers.your-spotify-local.tls: true
 | |
|       
 | |
|   your-spotify-server:
 | |
|     container_name: your-spotify-server
 | |
|     image: yooooomi/your_spotify_server
 | |
|     restart: unless-stopped
 | |
|     dns:
 | |
|       - ${DNS_IP}
 | |
|     ports:
 | |
|       - 32500:8080
 | |
|     links:
 | |
|       - your-spotify-db
 | |
|     depends_on:
 | |
|       - your-spotify-db
 | |
|     environment:
 | |
|       - API_ENDPOINT=http://${INTERNAL_IP}:32500 # This MUST be included as a valid URL in the spotify dashboard (see below)
 | |
|       - CLIENT_ENDPOINT=http://${INTERNAL_IP}:${APP_PORT}
 | |
|       - SPOTIFY_PUBLIC=${SPOTIFY_PUBLIC}
 | |
|       - SPOTIFY_SECRET=${SPOTIFY_SECRET}
 | |
|       - MONGO_ENDPOINT=mongodb://your-spotify-db:27017/your_spotify
 | |
|       - CORS=all
 | |
|     networks:
 | |
|       - tipi_main_network
 | |
| 
 | |
|   your-spotify-db:
 | |
|     container_name: your-spotify-db
 | |
|     image: mongo:4.4.8
 | |
|     restart: unless-stopped
 | |
|     volumes:
 | |
|       - ${APP_DATA_DIR}/data/db:/data/db
 | |
|     networks:
 | |
|       - tipi_main_network
 | |
| 
 | 
![renovate[bot]](/assets/img/avatar_default.png)