Adds support for docker. Can be built straight on docker hub.

This commit is contained in:
themonkeyz 2016-07-20 22:22:09 -04:00
parent 7000035a30
commit 98faa4e9ec
2 changed files with 9 additions and 0 deletions

3
docker/Dockerfile Normal file
View File

@ -0,0 +1,3 @@
FROM ruby:2.1
RUN gem install wayback_machine_downloader
ENTRYPOINT [ "/usr/local/bundle/bin/wayback_machine_downloader" ]

6
docker/README.md Normal file
View File

@ -0,0 +1,6 @@
Usage:
docker run --rm -it -v $PWD/websites:/websites themonkeyz/wayback_machine_downloader http://old_website.com
Saves the websites in their own subdirectories in the websites directory in the current working directory.
See main README for more details.