From 30c88ee12ce3216c4d768f73c84f6c1efd7fc482 Mon Sep 17 00:00:00 2001 From: Lazaro V Date: Tue, 3 Nov 2020 11:05:59 -0300 Subject: [PATCH] Fixed docker-compose.yml url #Summary This PR fixes the URL for the `docker-compose.yml` configuration file. Previous link downloaded the entire github editor webpage, throwing syntax errors when trying to install via Docker. #Related Issues #523 #Changes - Documentation (README.md) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6080fec5..467d5075 100644 --- a/README.md +++ b/README.md @@ -196,7 +196,7 @@ a headless browser runtime, a full webserver, and CLI interface. # docker-compose run archivebox [args] mkdir archivebox && cd archivebox -wget 'https://github.com/pirate/ArchiveBox/blob/master/docker-compose.yml' +wget 'https://raw.githubusercontent.com/pirate/ArchiveBox/master/docker-compose.yml' docker-compose run archivebox init docker-compose run archivebox add 'https://example.com' docker-compose run archivebox manage createsuperuser