From f24cb3dcbea7c28e1d404a15de93f82544097c2d Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Mon, 10 Aug 2020 13:42:31 -0400 Subject: [PATCH] add docker help text --- archivebox/main.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/archivebox/main.py b/archivebox/main.py index 1b58ad17..be915ca9 100644 --- a/archivebox/main.py +++ b/archivebox/main.py @@ -186,6 +186,9 @@ def help(out_dir: str=OUTPUT_DIR) -> None: print(' 1. Create an empty directory, then cd into it and run:') print(' 2. archivebox init') print() + print('If using Docker, you need to mount a volume to use as your data dir:') + print(' docker run -v /some/path:/data archivebox ...') + print() print('For more information, see the documentation here:') print(' https://github.com/pirate/ArchiveBox/wiki')