Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
services:spotisub [2024/09/18 06:44] – willy | services:spotisub [2024/10/28 14:04] (current) – willy | ||
---|---|---|---|
Line 6: | Line 6: | ||
useradd -d / | useradd -d / | ||
- | wget https://raw.githubusercontent.com/blastbeng/spotisub/main/ | + | create Spotify app: |
+ | https://developer.spotify.com/dashboard | ||
+ | redirect url: http://127.0.0.1:8080/ | ||
<file - docker-compose.yml> | <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: | ||
</ | </ | ||
- | create Apotify app: | ||
- | https:// | ||
- | redirect url: http:// | ||
mkdir cache | mkdir cache | ||
First run: | First run: | ||
- | podman compose | + | podman |
+ | podman exec -it spotisub | ||
+ | podman compose down | ||
FOLLOW INSTRUCTIONS: | FOLLOW INSTRUCTIONS: | ||