Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
services:spotisub [2024/09/18 05:59] – created willy | services:spotisub [2024/10/28 14:04] (current) – willy | ||
---|---|---|---|
Line 5: | Line 5: | ||
useradd -d / | useradd -d / | ||
+ | |||
+ | create Spotify app: | ||
+ | https:// | ||
+ | redirect url: http:// | ||
+ | |||
+ | <file - docker-compose.yml> | ||
+ | name: spotisub | ||
+ | services: | ||
+ | spotisub: | ||
+ | container_name: | ||
+ | user: " | ||
+ | environment: | ||
+ | - TZ=Europe/ | ||
+ | - SPOTIPY_CLIENT_ID=<< | ||
+ | - SPOTIPY_CLIENT_SECRET=<< | ||
+ | - SPOTIPY_REDIRECT_URI=http:// | ||
+ | - SUBSONIC_API_HOST=https:// | ||
+ | - SUBSONIC_API_BASE_URL=/ | ||
+ | - SUBSONIC_API_PORT=443 | ||
+ | - SUBSONIC_API_USER=<< | ||
+ | - SUBSONIC_API_PASS=<< | ||
+ | - LIDARR_ENABLED=0 | ||
+ | - LIDARR_IP=127.0.0.1 | ||
+ | - LIDARR_PORT=8686 | ||
+ | - LIDARR_USE_SSL=1 | ||
+ | - LIDARR_BASE_API_PATH=/ | ||
+ | - LIDARR_TOKEN=<< | ||
+ | - SPOTDL_ENABLED=0 | ||
+ | - SPOTDL_OUT_FORMAT="/ | ||
+ | - PLAYLIST_PREFIX=" | ||
+ | - LOGIN_DISABLED=1 | ||
+ | - APPLICATION_ROOT=spotisub | ||
+ | image: blastbeng/ | ||
+ | restart: always | ||
+ | volumes: | ||
+ | - / | ||
+ | # - "/ | ||
+ | ports: | ||
+ | - " | ||
+ | networks: | ||
+ | - spotisub-net | ||
+ | networks: | ||
+ | spotisub-net: | ||
+ | </ | ||
+ | |||
+ | |||
+ | mkdir cache | ||
+ | |||
+ | First run: | ||
+ | podman composedocker compose up -d | ||
+ | podman exec -it spotisub ./ | ||
+ | podman compose down | ||
+ | |||
+ | |||
+ | FOLLOW INSTRUCTIONS: | ||
+ | |||