From 930688820b688aaf46b00430d7bf08d594b13b8c Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Mon, 18 May 2020 16:54:58 -0400 Subject: [PATCH] change to volume mount style --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 785b433b..a0ce3bc1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ # Usage: # docker build github.com/pirate/ArchiveBox -t archivebox # echo 'https://example.com' | docker run -i --mount type=bind,source=$PWD/data,target=/data archivebox /bin/archive -# docker run --mount type=bind,source=$PWD/data,target=/data archivebox /bin/archive 'https://example.com/some/rss/feed.xml' +# docker run -v ./data:/data archivebox /bin/archive 'https://example.com/some/rss/feed.xml' # Documentation: # https://github.com/pirate/ArchiveBox/wiki/Docker#docker