Skip to content

Commit

Permalink
Correct docker run instructions (#198)
Browse files Browse the repository at this point in the history
Co-authored-by: Sathyajith Bhat <sathya@sathyasays.com>
  • Loading branch information
makew0rld and SathyaBhat committed Oct 25, 2021
1 parent 5a26ba0 commit 4e0350d
Showing 1 changed file with 4 additions and 2 deletions.
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

0 comments on commit 4e0350d

Please sign in to comment.