From f79564ff878383ad2422bc853ccaf67bc67bac77 Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Thu, 9 May 2024 00:37:21 -0700 Subject: [PATCH] Updated Docker (markdown) --- Docker.md | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/Docker.md b/Docker.md index 2c61253..ef18645 100644 --- a/Docker.md +++ b/Docker.md @@ -24,19 +24,24 @@ Running ArchiveBox with Docker allows you to manage it in a container without ex **Official Docker Hub image: [`hub.docker.com/r/archivebox/archivebox`](https://hub.docker.com/r/archivebox/archivebox)** ```bash -docker pull archivebox/archivebox +docker pull archivebox/archivebox:latest ``` + - [`Dockerfile`](https://github.com/ArchiveBox/ArchiveBox/blob/dev/Dockerfile) - [`docker-compose.yml`](https://github.com/ArchiveBox/ArchiveBox/blob/dev/docker-compose.yml) - [`archivebox-kubernetes.yml`](https://github.com/ArchiveBox/docker-archivebox/blob/master/archivebox.yml) +Published [Docker tags](https://hub.docker.com/r/archivebox/archivebox/tags): +- `:latest`, `:stable` (latest stable release, the default) +- `:x.x` and `:x.x.x` for specific versions (e.g. `:0.7` or `:0.7.2`) +- `:dev` for unstable alpha builds (breaks often, only for developers and willing beta testers) +- `:sha-xxxxxxx` for builds of specific git commits (to test or pin specific PRs or commits)
---- -> *Make sure you have **[Docker installed](https://docs.docker.com/install/#supported-platforms)** before following the instructions below!* ➡️ +> [!IMPORTANT] +> *Make sure you have **[Docker installed](https://docs.docker.com/install/#supported-platforms)** before following any instructions below!* ➡️ > `docker --version` (check installed version, must be `>=17.04.0`) ----