From 82c9c691c03b7b10a9a9e1fca744cefd4a12fb3d Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Sun, 28 Jan 2024 00:06:52 -0800 Subject: [PATCH] Update README.md --- README.md | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 1c26def3..a85b30cb 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,7 @@ The goal is to sleep soundly knowing the part of the internet you care about wil
-**📦  Install ArchiveBox using your preferred method: `docker` / `apt` / `brew` / `pip3` / `nix` / etc. ([see Quickstart below](#quickstart)).** +**📦  Install ArchiveBox using your preferred method: `docker` / `pip` / `apt` / `brew` / etc. ([see full Quickstart below](#quickstart)).**
@@ -78,7 +78,7 @@ The goal is to sleep soundly knowing the part of the internet you care about wil
mkdir ~/archivebox; cd ~/archivebox    # create a dir somewhere for your archivebox data
 
-# Get ArchiveBox with Docker Compose (recommended): +# Option A: Get ArchiveBox with Docker Compose (recommended): curl -sSL 'https://docker-compose.archivebox.io' > docker-compose.yml # edit options in this file as-needed docker compose run archivebox init --setup # docker compose run archivebox add 'https://example.com' @@ -86,14 +86,14 @@ docker compose run archivebox init --setup # docker compose up

-# Or use it as a plain Docker container: +# Option B: Or use it as a plain Docker container: docker run -it -v $PWD:/data archivebox/archivebox init --setup # docker run -it -v $PWD:/data archivebox/archivebox add 'https://example.com' # docker run -it -v $PWD:/data archivebox/archivebox help # docker run -it -v $PWD:/data -p 8000:8000 archivebox/archivebox

-# Or install it with your preferred pkg manager (see Quickstart below for apt, brew, and more) +# Option C: Or install it with your preferred pkg manager (see Quickstart below for apt, brew, and more) pip install archivebox archivebox init --setup # archviebox add 'https://example.com' @@ -101,15 +101,14 @@ archivebox init --setup # archivebox server 0.0.0.0:8000

-# Or use the optional auto setup script to install it +# Option D: Or use the optional auto setup script to install it curl -sSL 'https://get.archivebox.io' | sh
+
+Open http://localhost:8000 to see your server's Web UI ➡️

-Open http://localhost:8000 to see your server's Web UI ➡️ - -