1
0

Updated README.md with Docker instructions

This commit is contained in:
Tony Grosinger 2019-11-07 06:53:12 -08:00
parent 2e6c7e0805
commit 110146acf4
Signed by: tgrosinger
GPG Key ID: 065559ACE0A9C69C

View File

@ -10,9 +10,27 @@ This script requires python3. Additional dependencies can be found in the `requi
## Usage ## Usage
### Docker
```
git clone https://github.com/tgrosinger/youtube-dl-subscriptions
./build.sh
cp run.example.sh run.sh
# Make necessary changes in run.sh
./run.sh
```
### Running Locally
If you do not want to use Docker, you can instead setup the dependencies to run
this script from your locally installed python.
Clone the repository Clone the repository
git clone https://github.com/mewfree/youtube-dl-subscriptions git clone https://github.com/tgrosinger/youtube-dl-subscriptions
Install the requirements Install the requirements
@ -25,3 +43,9 @@ You can then run the script
python3 dl.py python3 dl.py
A `last.txt` file will be created in order to avoid downloading the same videos on the next run. A `last.txt` file will be created in order to avoid downloading the same videos on the next run.
## Credits
Based on the work from
[mewfree](https://github.com/mewfree/youtube-dl-subscriptions/) and
[pwcazenave](https://github.com/pwcazenave/youtube-dl-subscriptions).