mirror of
https://github.com/okxlin/appstore.git
synced 2026-09-23 08:01:00 +00:00
37 lines
867 B
YAML
37 lines
867 B
YAML
networks:
|
|
1panel-network:
|
|
external: true
|
|
services:
|
|
your_spotify:
|
|
image: "linuxserver/your_spotify:latest"
|
|
container_name: ${CONTAINER_NAME}
|
|
restart: always
|
|
networks:
|
|
- 1panel-network
|
|
depends_on:
|
|
- your-spotify-mongo
|
|
ports:
|
|
- "${PANEL_APP_PORT_HTTP}:80"
|
|
- "${PANEL_APP_PORT_HTTPS}:443"
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=${TIME_ZONE}
|
|
- APP_URL=${APP_URL}
|
|
- SPOTIFY_PUBLIC=${SPOTIFY_PUBLIC}
|
|
- SPOTIFY_SECRET=${SPOTIFY_SECRET}
|
|
- SPOTIFY_API_DELAY_MS=${SPOTIFY_API_DELAY_MS}
|
|
- CORS=${CORS}
|
|
- MONGO_ENDPOINT=${MONGO_ENDPOINT}
|
|
labels:
|
|
createdBy: "Apps"
|
|
your-spotify-mongo:
|
|
image: "mongo:8.0"
|
|
restart: always
|
|
networks:
|
|
- 1panel-network
|
|
volumes:
|
|
- "${MONGO_DATA_PATH}:/data/db"
|
|
labels:
|
|
createdBy: "Apps"
|