Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct docker run instructions #198

Merged
merged 3 commits into from
Oct 25, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 4 additions & 2 deletions GETTING_STARTED.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,13 @@ Run the Docker image with your client ID and secret:
docker run -d --rm \
-e SPOTIPY_CLIENT_ID=client_id \
-e SPOTIPY_CLIENT_SECRET=client_secret \
-v "`pwd`":/download \
-v "download_directory":/download \
spotify_dl \
spotify_dl -l "spotify_playlist_link" -o download_directory
spotify_dl -l "spotify_playlist_link" -o /download
```

Replace `download_directory` with the path to the directory you want songs in. Set `"download_directory"` to `"$(pwd)"` to download to the current directory on Linux.

You can also run the bulk downloading script, make sure to configure it first: `bash bulk_docker_download.sh`

### How do I set defaults?
Expand Down