From a056a8ca92d878ab082c03e70d427556b33d71de Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Tue, 12 Apr 2022 18:18:33 -0400 Subject: [PATCH] Updated Upgrading or Merging Archives (markdown) --- Upgrading-or-Merging-Archives.md | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/Upgrading-or-Merging-Archives.md b/Upgrading-or-Merging-Archives.md index c8a0ce9..c582ea4 100644 --- a/Upgrading-or-Merging-Archives.md +++ b/Upgrading-or-Merging-Archives.md @@ -50,6 +50,11 @@ docker-compose pull # pull the latest image version from Docker Hub docker-compose up # collection will be automatically upgraded as it starts ``` +More info: +- https://github.com/ArchiveBox/ArchiveBox#%EF%B8%8F-easy-setup +- https://github.com/ArchiveBox/ArchiveBox/wiki/Docker#docker-compose +- https://github.com/ArchiveBox/ArchiveBox/wiki/Docker#setup + ### Upgrading with plain Docker Upgrading with plain Docker is similar to the process with Docker Compose, but you have to run `archivebox init` manually at the end to finish the process. @@ -65,6 +70,11 @@ docker run -v $PWD:/data -it archivebox/archivebox init --setup # upgrade the c docker run -v $PWD:/data -it -p 8000:8000 archivebox/archivebox server 0.0.0.0:8000 ``` +More info: +- https://github.com/ArchiveBox/ArchiveBox#%EF%B8%8F-easy-setup +- https://github.com/ArchiveBox/ArchiveBox/wiki/Docker#docker +- https://github.com/ArchiveBox/ArchiveBox/wiki/Docker#setup-1 + ### Upgrading with a package manager Package manager releases take a lot of effort to maintain ([contributions welcome!](https://github.com/ArchiveBox/ArchiveBox/wiki/Donations)) and sometimes lag behind the Docker releases. We make a best effort to have the latest release available through all channels within a reasonable timeframe. @@ -88,7 +98,17 @@ archivebox update --index-only # optionally force an update of the snapshot ind archivebox status # check that everything succeeded ``` -*More detailed instructions here: https://github.com/ArchiveBox/ArchiveBox#-package-manager-setup* + +More info: +- https://github.com/ArchiveBox/ArchiveBox#-package-manager-setup +- https://github.com/ArchiveBox/ArchiveBox/wiki/Install#manual-setup +- https://github.com/ArchiveBox/pip-archivebox +- https://github.com/ArchiveBox/homebrew-archivebox +- https://github.com/ArchiveBox/docker-archivebox +- https://github.com/ArchiveBox/debian-archivebox +- https://github.com/ArchiveBox/electron-archivebox +- https://aur.archlinux.org/packages/archivebox +- https://github.com/NixOS/nixpkgs/blob/master/pkgs/applications/misc/archivebox/default.nix ---