From c7fc7c7b58f3a3e792811df5c6701783b2549e67 Mon Sep 17 00:00:00 2001 From: Vitaly Zdanevich Date: Mon, 14 Apr 2025 10:43:49 +0400 Subject: [PATCH] README.md: add docker example without cloning the repo --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index bf9c8e2..718392c 100644 --- a/README.md +++ b/README.md @@ -62,6 +62,12 @@ docker build -t wayback_machine_downloader . docker run -it --rm wayback_machine_downloader [options] URL ``` +or the example without cloning the repo - fetching smallrockets.com until the year 2013: + +```bash +docker run ghcr.io/strawberrymaster/wayback-machine-downloader:master wayback_machine_downloader --to 20130101 smallrockets.com +``` + ### 🐳 Using Docker Compose We can also use it with Docker Compose, which provides a lot of benefits for extending more functionalities (such as implementing storing previous downloads in a database):