View the docs archives
Estimated reading time: 1 minuteThis 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.
v19.03 (current)
Docs for v19.03 (current) are accessible at https://docs.docker.com/, or to view the docs offline on your local machine, run:
docker run -ti -p 4000:4000 docs/docker.github.io:latest
v18.09
Docs for v18.09 are accessible at https://docs.docker.com/v18.09/, or to view the docs offline on your local machine, run:
docker run -ti -p 4000:4000 docs/docker.github.io:v18.09
v18.03
Docs for v18.03 are accessible at https://docs.docker.com/v18.03/, or to view the docs offline on your local machine, run:
docker run -ti -p 4000:4000 docs/docker.github.io:v18.03
v17.06
Docs for v17.06 are accessible at https://docs.docker.com/v17.06/, or to view the docs offline on your local machine, run:
docker run -ti -p 4000:4000 docs/docker.github.io:v17.06
Accessing unsupported archived documentation
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 drop-down 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
in Docker Hub. For example, run the following to access
v1.9
:
docker run -it -p 4000:4000 docs/docker.github.io:v1.9