From 75f9f6e43849ad8451ddddd3abef53126627cefb Mon Sep 17 00:00:00 2001 From: themonkeyz Date: Wed, 20 Jul 2016 23:15:45 -0400 Subject: [PATCH] Reworded the README and included it into the main one. --- README.md | 10 ++++++++++ docker/README.md | 6 ------ 2 files changed, 10 insertions(+), 6 deletions(-) delete mode 100644 docker/README.md 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.