From 571131d5f3e3a904ad43041095b52c420bef438b Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Tue, 13 Jun 2023 17:35:00 -0700 Subject: [PATCH] Update README.md to simplify intro instructions --- README.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f4220125..034017f8 100644 --- a/README.md +++ b/README.md @@ -49,13 +49,16 @@ The goal is to sleep soundly knowing the part of the internet you care about wil
-**📦  Get ArchiveBox with Docker / `apt` / `brew` / `pip3` / etc. ([see Quickstart below](#quickstart)).** +**📦  Get ArchiveBox with `docker` / `apt` / `brew` / `pip3` / `nix` / etc. ([see Quickstart below](#quickstart)).** ```bash -# Follow the instructions for your package manager in the quickstart, e.g.: +# Get ArchiveBox with Docker or Docker Compose (recommended) +docker run -v $PWD/data:/data -it archivebox/archivebox:dev init --setup + +# Or install with your preferred package manager (see Quickstart below for apt, brew, and more) pip3 install archivebox -# Or use the optional auto setup script to install it for you: +# Or use the optional auto setup script to install it curl -sSL 'https://get.archivebox.io' | sh ```