diff --git a/README.md b/README.md index 7841a5f..502b282 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,16 @@ Or if you want to download every images without anything else: wayback_machine_downloader http://example.com --only "/\.(gif|jpg|jpeg)$/i" +## Using the Docker images + +All the options should work the same, just run it with this command instead of installing the gem: + + docker run --rm -it -v $PWD/websites:/websites hartator/wayback-machine-downloader + +You can use git branches as image tags to test new features on Docker Hub automated builds: + + docker run --rm -it -v $PWD/websites:/websites yourname/yourrepo:yourfeature + ## Contributing Contributions are welcome! Just submit a pull request via GitHub. diff --git a/docker/README.md b/docker/README.md deleted file mode 100644 index 3f1db48..0000000 --- a/docker/README.md +++ /dev/null @@ -1,6 +0,0 @@ -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.