|
@@ -4,7 +4,9 @@ services:
|
|
your-spotify-server:
|
|
your-spotify-server:
|
|
container_name: your-spotify-server
|
|
container_name: your-spotify-server
|
|
image: yooooomi/your_spotify_server
|
|
image: yooooomi/your_spotify_server
|
|
- restart: always
|
|
|
|
|
|
+ restart: unless-stopped
|
|
|
|
+ dns:
|
|
|
|
+ - ${DNS_IP}
|
|
ports:
|
|
ports:
|
|
- 32500:8080
|
|
- 32500:8080
|
|
links:
|
|
links:
|
|
@@ -22,6 +24,7 @@ services:
|
|
- tipi_main_network
|
|
- tipi_main_network
|
|
|
|
|
|
your-spotify-db:
|
|
your-spotify-db:
|
|
|
|
+ restart: unless-stopped
|
|
container_name: your-spotify-db
|
|
container_name: your-spotify-db
|
|
image: mongo:4.4.8
|
|
image: mongo:4.4.8
|
|
volumes:
|
|
volumes:
|
|
@@ -30,6 +33,7 @@ services:
|
|
- tipi_main_network
|
|
- tipi_main_network
|
|
|
|
|
|
your-spotify:
|
|
your-spotify:
|
|
|
|
+ restart: unless-stopped
|
|
container_name: your-spotify
|
|
container_name: your-spotify
|
|
image: yooooomi/your_spotify_client
|
|
image: yooooomi/your_spotify_client
|
|
depends_on:
|
|
depends_on:
|
|
@@ -40,4 +44,4 @@ services:
|
|
environment:
|
|
environment:
|
|
- API_ENDPOINT=http://${INTERNAL_IP}:32500
|
|
- API_ENDPOINT=http://${INTERNAL_IP}:32500
|
|
networks:
|
|
networks:
|
|
- - tipi_main_network
|
|
|
|
|
|
+ - tipi_main_network
|