diff --git a/README.md b/README.md
index d357c550..aeb07aa3 100644
--- a/README.md
+++ b/README.md
@@ -72,47 +72,42 @@ 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)).**
+
Quick reference ⤵️
-# Get ArchiveBox with Docker Compose (recommended)
-curl -O 'https://raw.githubusercontent.com/ArchiveBox/ArchiveBox/dev/docker-compose.yml'
-docker compose up
+
+mkdir ~/archivebox; cd ~/archivebox # create a dir somewhere for your archivebox data
-
# Or use it as a single Docker container
-docker run -v $PWD/data:/data -p 8000:8000 -it archivebox/archivebox
+# 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'
+# docker compose run archivebox help
+# docker compose up
-
# Or install with your preferred package manager (see Quickstart below for apt, brew, and more)
+
+# 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)
pip install archivebox
+archivebox init --setup
+# archviebox add 'https://example.com'
+# archivebox help
+# archivebox server 0.0.0.0:8000
-
# Or use the optional auto setup script to install it
-curl -sSL 'https://get.archivebox.io' | sh
+# Or use the optional auto setup script to install it
+curl -sSL 'https://get.archivebox.io' | sh
-**🔢 Create a new directory to hold your data**
-```bash
-mkdir ~/archivebox; cd ~/archivebox
-archivebox init --setup # or: setup config via docker-compose.yml
+Open http://localhost:8000
to see your server's Web UI ➡️
-```
-
-**🔢 Next steps: start the ArchiveBox server to use the Web UI**
-```bash
-archivebox server 0.0.0.0:8000 # or: docker compose up
-```
-Then open http://localhost:8000
to see it ➡️
-
-**🔢 Or use the CLI to archive links & manage your collection**
-```bash
-archivebox add 'https://example.com' # add URLs one at a time
-archivebox add < ~/Downloads/bookmarks.json # or pipe in URLs in any text-based format
-archivebox schedule --every=day --depth=1 https://example.com/rss.xml # or auto-import URLs regularly on a schedule
-# or: docker compose run archivebox add ... etc. ...
-
-archivebox list 'https://example.com' # use the CLI commands (--help for more)
-ls ./archive/*/index.json # or browse your Snapshots via the filesystem
-```