CasaOS-AppStore
CasaOS-AppStore copied to clipboard
[App Request] Your Spotify
App Information
- Name: Your_Spotify
- Short Description: YourSpotify is a self-hosted application that tracks what you listen and offers you a dashboard to explore statistics about it!
- GitHub Repository: https://github.com/Yooooomi/your_spotify
- Docker Image: yooooomi/your_spotify_server,yooooomi/your_spotify_client, mongo
Why do you want this app?
It's a fun app that would make a great addition to CasaOS.
Additional information?
version: "3"
services: server: image: yooooomi/your_spotify_server restart: always ports: - "8080:8080" links: - mongo depends_on: - mongo environment: - API_ENDPOINT=http://localhost:8080 # This MUST be included as a valid URL in the spotify dashboard (see below) - CLIENT_ENDPOINT=http://localhost:3000 - SPOTIFY_PUBLIC=your_spotify_client_id - SPOTIFY_SECRET=your_spotify_secret - CORS=http://localhost:3000,http://localhost:3001 # all if you want to allow every origin mongo: container_name: mongo image: mongo:4.4.8 volumes: - ./your_spotify_db:/data/db
web: image: yooooomi/your_spotify_client restart: always ports: - "3000:3000" environment: - API_ENDPOINT=http://localhost:8080
Your Spotify is available in this custom Appstore: https://github.com/WisdomSky/CasaOS-LinuxServer-AppStore
Screenshots:
Your Spotify is available in this custom Appstore: https://github.com/WisdomSky/CasaOS-LinuxServer-AppStore
@WisdomSky I checked this out, looks like it still needs an external mongoDB container....the store doesn't have MongoDB. Anyway to integrate Mongo directly into the container of your_spotify or have mongoDB as a standalone installer available via the custom appstore?
@akeslo
MongoDB app is available in this other appstore. https://github.com/WisdomSky/CasaOS-Appstore
or you can wait for #177 and #179 to be merged into the main CasaOS Appstore.