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

Add docker support #242

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
FROM python:3.6

ADD requirements.txt /safaribooks/requirements.txt
WORKDIR /safaribooks
RUN pip3 install --upgrade pip
RUN pip3 install -r requirements.txt
volkan marked this conversation as resolved.
Show resolved Hide resolved
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,12 @@ It's really simple to use, just choose a book from the library and replace in th
$ python3 safaribooks.py --cred "[email protected]:password01" XXXXXXXXXXXXX
```

## Usage:
You can use Docker
```shell
$ docker-compose run safaribooks --cred "[email protected]:password01" XXXXXXXXXXXXX
```

The ID is the digits that you find in the URL of the book description page:
`https://www.safaribooksonline.com/library/view/book-name/XXXXXXXXXXXXX/`
Like: `https://www.safaribooksonline.com/library/view/test-driven-development-with/9781491958698/`
Expand Down
9 changes: 9 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
version: '3'

services:
safaribooks:
build: .
entrypoint: "/safaribooks/safaribooks.py"
volumes:
- ./:/safaribooks
volkan marked this conversation as resolved.
Show resolved Hide resolved
working_dir: /safaribooks