From 0aeaa60db2f5d39475f3e01ae99dc8d1b5e81d4b Mon Sep 17 00:00:00 2001 From: paigehargrave Date: Fri, 7 Jun 2019 18:12:26 -0400 Subject: [PATCH] Added info for archived versions (#1154) --- docsarchive.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/docsarchive.md b/docsarchive.md index 4cad9558e7..213f9459e7 100644 --- a/docsarchive.md +++ b/docsarchive.md @@ -5,6 +5,9 @@ title: View the docs archives This page lists the various ways you can view the docs as they were when a prior version of Docker was shipped. +**Note**: To access documentation for an unsupported version, refer to +[Accessing unsupported archived documentation](#accessing-unsupported-archived-documentation). + {% for archive in site.data.docsarchive.archives %} {% if archive.current %} @@ -34,3 +37,18 @@ docker run -ti -p 4000:4000 {{ archive.image }} {% endif %} {% endif %} {% endfor %} + +## Accessing unsupported archived documentation + +Supported documentation includes the current version plus the previous five versions. + +If you are using a version of the documentation that is no longer supported, which means that the version number is not listed in the site dropdown list, you can still access that documentation in the following ways: + +- By entering your version number and selecting it from the branch selection list for this repo +- By directly accessing the Github URL for your version. For example, https://github.com/docker/docker.github.io/tree/v1.9 for `v1.9` +- By running a container of the specific [tag for your documentation version](https://cloud.docker.com/u/docs/repository/docker/docs/docker.github.io/general#read-these-docs-offline) +in Docker Hub. For example, run the following to access `v1.9`: + + ```bash + docker run -it -p 4000:4000 docs/docker.github.io:v1.9 + ```