Docker Library Bot 6 лет назад
Родитель
Сommit
059196e224
4 измененных файлов с 139 добавлено и 57 удалено
  1. 2 2
      docker/README.md
  2. 68 0
      jobber/README.md
  3. 25 25
      python/README.md
  4. 44 30
      ros/README.md

+ 2 - 2
docker/README.md

@@ -17,11 +17,11 @@ WARNING:
 # Supported tags and respective `Dockerfile` links
 
 -	[`19.03.1`, `19.03`, `19`, `stable`, `test`, `latest`](https://github.com/docker-library/docker/blob/c01ffa41486f70c34f020c769bc5bddf106367ea/19.03/Dockerfile)
--	[`19.03.1-dind`, `19.03-dind`, `19-dind`, `stable-dind`, `test-dind`, `dind`](https://github.com/docker-library/docker/blob/be5681f51834bf437e12a27c34858d5f87fab024/19.03/dind/Dockerfile)
+-	[`19.03.1-dind`, `19.03-dind`, `19-dind`, `stable-dind`, `test-dind`, `dind`](https://github.com/docker-library/docker/blob/d121b78398a5aed482ffbeb8b476e3c61ecb3b53/19.03/dind/Dockerfile)
 -	[`19.03.1-dind-rootless`, `19.03-dind-rootless`, `19-dind-rootless`, `stable-dind-rootless`, `test-dind-rootless`, `dind-rootless`](https://github.com/docker-library/docker/blob/c01ffa41486f70c34f020c769bc5bddf106367ea/19.03/dind-rootless/Dockerfile)
 -	[`19.03.1-git`, `19.03-git`, `19-git`, `stable-git`, `test-git`, `git`](https://github.com/docker-library/docker/blob/4975dca2dd357705c5613045348402ab664ccdf0/19.03/git/Dockerfile)
 -	[`18.09.8`, `18.09`, `18`](https://github.com/docker-library/docker/blob/c01ffa41486f70c34f020c769bc5bddf106367ea/18.09/Dockerfile)
--	[`18.09.8-dind`, `18.09-dind`, `18-dind`](https://github.com/docker-library/docker/blob/be5681f51834bf437e12a27c34858d5f87fab024/18.09/dind/Dockerfile)
+-	[`18.09.8-dind`, `18.09-dind`, `18-dind`](https://github.com/docker-library/docker/blob/d121b78398a5aed482ffbeb8b476e3c61ecb3b53/18.09/dind/Dockerfile)
 -	[`18.09.8-git`, `18.09-git`, `18-git`](https://github.com/docker-library/docker/blob/91bbc4f7b06c06020d811dafb2266bcd7cf6c06d/18.09/git/Dockerfile)
 
 # Quick reference

+ 68 - 0
jobber/README.md

@@ -0,0 +1,68 @@
+<!--
+
+********************************************************************************
+
+WARNING:
+
+    DO NOT EDIT "jobber/README.md"
+
+    IT IS AUTO-GENERATED
+
+    (from the other files in "jobber/" combined with a set of templates)
+
+********************************************************************************
+
+-->
+
+# Supported tags and respective `Dockerfile` links
+
+-	[`1.4.0-alpine3.10`, `1.4-alpine3.10`, `1-alpine3.10`, `latest`](https://github.com/dshearer/jobber-docker/blob/64d2a0778ae73986cb90f1c374d9dfb42c9b8483/alpine3.10/Dockerfile)
+
+# Quick reference
+
+-	**Where to get help**:  
+	[the Docker Community Forums](https://forums.docker.com/), [the Docker Community Slack](https://blog.docker.com/2016/11/introducing-docker-community-directory-docker-community-slack/), or [Stack Overflow](https://stackoverflow.com/search?tab=newest&q=docker)
+
+-	**Where to file issues**:  
+	[https://github.com/dshearer/jobber-docker/issues](https://github.com/dshearer/jobber-docker/issues)
+
+-	**Maintained by**:  
+	[Jobber](https://github.com/dshearer/jobber-docker)
+
+-	**Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64))  
+	[`amd64`](https://hub.docker.com/r/amd64/jobber/)
+
+-	**Published image artifact details**:  
+	[repo-info repo's `repos/jobber/` directory](https://github.com/docker-library/repo-info/blob/master/repos/jobber) ([history](https://github.com/docker-library/repo-info/commits/master/repos/jobber))  
+	(image metadata, transfer size, etc)
+
+-	**Image updates**:  
+	[official-images PRs with label `library/jobber`](https://github.com/docker-library/official-images/pulls?q=label%3Alibrary%2Fjobber)  
+	[official-images repo's `library/jobber` file](https://github.com/docker-library/official-images/blob/master/library/jobber) ([history](https://github.com/docker-library/official-images/commits/master/library/jobber))
+
+-	**Source of this description**:  
+	[docs repo's `jobber/` directory](https://github.com/docker-library/docs/tree/master/jobber) ([history](https://github.com/docker-library/docs/commits/master/jobber))
+
+# What is Jobber?
+
+Jobber is a utility for Unix-like systems that can run arbitrary commands, or "jobs", according to a schedule. It is meant to be a better alternative to the classic Unix utility cron.
+
+Along with the functionality of cron, Jobber also provides:
+
+-	**Job execution history:** you can see what jobs have recently run, and whether they succeeded or failed.
+-	**Sophisticated error handling:** you can control whether and when a job is run again after it fails. For example, after an initial failure of a job, Jobber can schedule future runs using an exponential backoff algorithm.
+-	**Sophisticated error reporting:** you can control whether Jobber notifies you about each failed run, or only about jobs that have been disabled due to repeated failures.
+
+# How to use this image
+
+This image contains Jobber running as an unprivileged user named "jobberuser". The jobs are defined in the file /home/jobberuser/.jobber. By default, the only job is one that prints "Jobber is running!" every second. You should replace it with your own jobs. Refer to [the documentation](https://dshearer.github.io/jobber/doc/v1.4/#jobfile) to learn how to do this.
+
+# License
+
+[Jobber's license](https://github.com/dshearer/jobber/blob/master/LICENSE)
+
+As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained).
+
+Some additional license information which was able to be auto-detected might be found in [the `repo-info` repository's `jobber/` directory](https://github.com/docker-library/repo-info/tree/master/repos/jobber).
+
+As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within.

+ 25 - 25
python/README.md

@@ -18,33 +18,33 @@ WARNING:
 
 ## Simple Tags
 
--	[`3.8.0b3-buster`, `3.8-rc-buster`, `rc-buster`](https://github.com/docker-library/python/blob/836397519e72c7317eb83e40ab990abaa9e0e9d5/3.8-rc/buster/Dockerfile)
--	[`3.8.0b3-slim-buster`, `3.8-rc-slim-buster`, `rc-slim-buster`, `3.8.0b3-slim`, `3.8-rc-slim`, `rc-slim`](https://github.com/docker-library/python/blob/836397519e72c7317eb83e40ab990abaa9e0e9d5/3.8-rc/buster/slim/Dockerfile)
--	[`3.8.0b3-alpine3.10`, `3.8-rc-alpine3.10`, `rc-alpine3.10`, `3.8.0b3-alpine`, `3.8-rc-alpine`, `rc-alpine`](https://github.com/docker-library/python/blob/836397519e72c7317eb83e40ab990abaa9e0e9d5/3.8-rc/alpine3.10/Dockerfile)
+-	[`3.8.0b3-buster`, `3.8-rc-buster`, `rc-buster`](https://github.com/docker-library/python/blob/81462d1d42bef466d89f1108dde44462c408d3b7/3.8-rc/buster/Dockerfile)
+-	[`3.8.0b3-slim-buster`, `3.8-rc-slim-buster`, `rc-slim-buster`, `3.8.0b3-slim`, `3.8-rc-slim`, `rc-slim`](https://github.com/docker-library/python/blob/81462d1d42bef466d89f1108dde44462c408d3b7/3.8-rc/buster/slim/Dockerfile)
+-	[`3.8.0b3-alpine3.10`, `3.8-rc-alpine3.10`, `rc-alpine3.10`, `3.8.0b3-alpine`, `3.8-rc-alpine`, `rc-alpine`](https://github.com/docker-library/python/blob/81462d1d42bef466d89f1108dde44462c408d3b7/3.8-rc/alpine3.10/Dockerfile)
 -	[`3.8.0b3-windowsservercore-ltsc2016`, `3.8-rc-windowsservercore-ltsc2016`, `rc-windowsservercore-ltsc2016`](https://github.com/docker-library/python/blob/836397519e72c7317eb83e40ab990abaa9e0e9d5/3.8-rc/windows/windowsservercore-ltsc2016/Dockerfile)
 -	[`3.8.0b3-windowsservercore-1803`, `3.8-rc-windowsservercore-1803`, `rc-windowsservercore-1803`](https://github.com/docker-library/python/blob/836397519e72c7317eb83e40ab990abaa9e0e9d5/3.8-rc/windows/windowsservercore-1803/Dockerfile)
 -	[`3.8.0b3-windowsservercore-1809`, `3.8-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/836397519e72c7317eb83e40ab990abaa9e0e9d5/3.8-rc/windows/windowsservercore-1809/Dockerfile)
--	[`3.7.4-buster`, `3.7-buster`, `3-buster`, `buster`](https://github.com/docker-library/python/blob/d2fcc8406cebea404211e808f74fc1090122b4e8/3.7/buster/Dockerfile)
--	[`3.7.4-slim-buster`, `3.7-slim-buster`, `3-slim-buster`, `slim-buster`, `3.7.4-slim`, `3.7-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/d2fcc8406cebea404211e808f74fc1090122b4e8/3.7/buster/slim/Dockerfile)
--	[`3.7.4-stretch`, `3.7-stretch`, `3-stretch`, `stretch`](https://github.com/docker-library/python/blob/d2fcc8406cebea404211e808f74fc1090122b4e8/3.7/stretch/Dockerfile)
--	[`3.7.4-slim-stretch`, `3.7-slim-stretch`, `3-slim-stretch`, `slim-stretch`](https://github.com/docker-library/python/blob/d2fcc8406cebea404211e808f74fc1090122b4e8/3.7/stretch/slim/Dockerfile)
--	[`3.7.4-alpine3.10`, `3.7-alpine3.10`, `3-alpine3.10`, `alpine3.10`, `3.7.4-alpine`, `3.7-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/d2fcc8406cebea404211e808f74fc1090122b4e8/3.7/alpine3.10/Dockerfile)
--	[`3.7.4-alpine3.9`, `3.7-alpine3.9`, `3-alpine3.9`, `alpine3.9`](https://github.com/docker-library/python/blob/d2fcc8406cebea404211e808f74fc1090122b4e8/3.7/alpine3.9/Dockerfile)
+-	[`3.7.4-buster`, `3.7-buster`, `3-buster`, `buster`](https://github.com/docker-library/python/blob/81462d1d42bef466d89f1108dde44462c408d3b7/3.7/buster/Dockerfile)
+-	[`3.7.4-slim-buster`, `3.7-slim-buster`, `3-slim-buster`, `slim-buster`, `3.7.4-slim`, `3.7-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/81462d1d42bef466d89f1108dde44462c408d3b7/3.7/buster/slim/Dockerfile)
+-	[`3.7.4-stretch`, `3.7-stretch`, `3-stretch`, `stretch`](https://github.com/docker-library/python/blob/81462d1d42bef466d89f1108dde44462c408d3b7/3.7/stretch/Dockerfile)
+-	[`3.7.4-slim-stretch`, `3.7-slim-stretch`, `3-slim-stretch`, `slim-stretch`](https://github.com/docker-library/python/blob/81462d1d42bef466d89f1108dde44462c408d3b7/3.7/stretch/slim/Dockerfile)
+-	[`3.7.4-alpine3.10`, `3.7-alpine3.10`, `3-alpine3.10`, `alpine3.10`, `3.7.4-alpine`, `3.7-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/81462d1d42bef466d89f1108dde44462c408d3b7/3.7/alpine3.10/Dockerfile)
+-	[`3.7.4-alpine3.9`, `3.7-alpine3.9`, `3-alpine3.9`, `alpine3.9`](https://github.com/docker-library/python/blob/81462d1d42bef466d89f1108dde44462c408d3b7/3.7/alpine3.9/Dockerfile)
 -	[`3.7.4-windowsservercore-ltsc2016`, `3.7-windowsservercore-ltsc2016`, `3-windowsservercore-ltsc2016`, `windowsservercore-ltsc2016`](https://github.com/docker-library/python/blob/d2fcc8406cebea404211e808f74fc1090122b4e8/3.7/windows/windowsservercore-ltsc2016/Dockerfile)
 -	[`3.7.4-windowsservercore-1803`, `3.7-windowsservercore-1803`, `3-windowsservercore-1803`, `windowsservercore-1803`](https://github.com/docker-library/python/blob/d2fcc8406cebea404211e808f74fc1090122b4e8/3.7/windows/windowsservercore-1803/Dockerfile)
 -	[`3.7.4-windowsservercore-1809`, `3.7-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/d2fcc8406cebea404211e808f74fc1090122b4e8/3.7/windows/windowsservercore-1809/Dockerfile)
--	[`3.6.9-buster`, `3.6-buster`](https://github.com/docker-library/python/blob/d2fcc8406cebea404211e808f74fc1090122b4e8/3.6/buster/Dockerfile)
--	[`3.6.9-slim-buster`, `3.6-slim-buster`, `3.6.9-slim`, `3.6-slim`](https://github.com/docker-library/python/blob/d2fcc8406cebea404211e808f74fc1090122b4e8/3.6/buster/slim/Dockerfile)
--	[`3.6.9-stretch`, `3.6-stretch`](https://github.com/docker-library/python/blob/d2fcc8406cebea404211e808f74fc1090122b4e8/3.6/stretch/Dockerfile)
--	[`3.6.9-slim-stretch`, `3.6-slim-stretch`](https://github.com/docker-library/python/blob/d2fcc8406cebea404211e808f74fc1090122b4e8/3.6/stretch/slim/Dockerfile)
--	[`3.6.9-alpine3.10`, `3.6-alpine3.10`, `3.6.9-alpine`, `3.6-alpine`](https://github.com/docker-library/python/blob/d2fcc8406cebea404211e808f74fc1090122b4e8/3.6/alpine3.10/Dockerfile)
--	[`3.6.9-alpine3.9`, `3.6-alpine3.9`](https://github.com/docker-library/python/blob/d2fcc8406cebea404211e808f74fc1090122b4e8/3.6/alpine3.9/Dockerfile)
--	[`3.5.7-buster`, `3.5-buster`](https://github.com/docker-library/python/blob/d2fcc8406cebea404211e808f74fc1090122b4e8/3.5/buster/Dockerfile)
--	[`3.5.7-slim-buster`, `3.5-slim-buster`, `3.5.7-slim`, `3.5-slim`](https://github.com/docker-library/python/blob/d2fcc8406cebea404211e808f74fc1090122b4e8/3.5/buster/slim/Dockerfile)
--	[`3.5.7-stretch`, `3.5-stretch`](https://github.com/docker-library/python/blob/d2fcc8406cebea404211e808f74fc1090122b4e8/3.5/stretch/Dockerfile)
--	[`3.5.7-slim-stretch`, `3.5-slim-stretch`](https://github.com/docker-library/python/blob/d2fcc8406cebea404211e808f74fc1090122b4e8/3.5/stretch/slim/Dockerfile)
--	[`3.5.7-alpine3.10`, `3.5-alpine3.10`, `3.5.7-alpine`, `3.5-alpine`](https://github.com/docker-library/python/blob/d2fcc8406cebea404211e808f74fc1090122b4e8/3.5/alpine3.10/Dockerfile)
--	[`3.5.7-alpine3.9`, `3.5-alpine3.9`](https://github.com/docker-library/python/blob/d2fcc8406cebea404211e808f74fc1090122b4e8/3.5/alpine3.9/Dockerfile)
+-	[`3.6.9-buster`, `3.6-buster`](https://github.com/docker-library/python/blob/81462d1d42bef466d89f1108dde44462c408d3b7/3.6/buster/Dockerfile)
+-	[`3.6.9-slim-buster`, `3.6-slim-buster`, `3.6.9-slim`, `3.6-slim`](https://github.com/docker-library/python/blob/81462d1d42bef466d89f1108dde44462c408d3b7/3.6/buster/slim/Dockerfile)
+-	[`3.6.9-stretch`, `3.6-stretch`](https://github.com/docker-library/python/blob/81462d1d42bef466d89f1108dde44462c408d3b7/3.6/stretch/Dockerfile)
+-	[`3.6.9-slim-stretch`, `3.6-slim-stretch`](https://github.com/docker-library/python/blob/81462d1d42bef466d89f1108dde44462c408d3b7/3.6/stretch/slim/Dockerfile)
+-	[`3.6.9-alpine3.10`, `3.6-alpine3.10`, `3.6.9-alpine`, `3.6-alpine`](https://github.com/docker-library/python/blob/81462d1d42bef466d89f1108dde44462c408d3b7/3.6/alpine3.10/Dockerfile)
+-	[`3.6.9-alpine3.9`, `3.6-alpine3.9`](https://github.com/docker-library/python/blob/81462d1d42bef466d89f1108dde44462c408d3b7/3.6/alpine3.9/Dockerfile)
+-	[`3.5.7-buster`, `3.5-buster`](https://github.com/docker-library/python/blob/81462d1d42bef466d89f1108dde44462c408d3b7/3.5/buster/Dockerfile)
+-	[`3.5.7-slim-buster`, `3.5-slim-buster`, `3.5.7-slim`, `3.5-slim`](https://github.com/docker-library/python/blob/81462d1d42bef466d89f1108dde44462c408d3b7/3.5/buster/slim/Dockerfile)
+-	[`3.5.7-stretch`, `3.5-stretch`](https://github.com/docker-library/python/blob/81462d1d42bef466d89f1108dde44462c408d3b7/3.5/stretch/Dockerfile)
+-	[`3.5.7-slim-stretch`, `3.5-slim-stretch`](https://github.com/docker-library/python/blob/81462d1d42bef466d89f1108dde44462c408d3b7/3.5/stretch/slim/Dockerfile)
+-	[`3.5.7-alpine3.10`, `3.5-alpine3.10`, `3.5.7-alpine`, `3.5-alpine`](https://github.com/docker-library/python/blob/81462d1d42bef466d89f1108dde44462c408d3b7/3.5/alpine3.10/Dockerfile)
+-	[`3.5.7-alpine3.9`, `3.5-alpine3.9`](https://github.com/docker-library/python/blob/81462d1d42bef466d89f1108dde44462c408d3b7/3.5/alpine3.9/Dockerfile)
 -	[`2.7.16-buster`, `2.7-buster`, `2-buster`](https://github.com/docker-library/python/blob/d2fcc8406cebea404211e808f74fc1090122b4e8/2.7/buster/Dockerfile)
 -	[`2.7.16-slim-buster`, `2.7-slim-buster`, `2-slim-buster`, `2.7.16-slim`, `2.7-slim`, `2-slim`](https://github.com/docker-library/python/blob/d2fcc8406cebea404211e808f74fc1090122b4e8/2.7/buster/slim/Dockerfile)
 -	[`2.7.16-stretch`, `2.7-stretch`, `2-stretch`](https://github.com/docker-library/python/blob/d2fcc8406cebea404211e808f74fc1090122b4e8/2.7/stretch/Dockerfile)
@@ -58,7 +58,7 @@ WARNING:
 ## Shared Tags
 
 -	`3.8.0b3`, `3.8-rc`, `rc`:
-	-	[`3.8.0b3-buster`](https://github.com/docker-library/python/blob/836397519e72c7317eb83e40ab990abaa9e0e9d5/3.8-rc/buster/Dockerfile)
+	-	[`3.8.0b3-buster`](https://github.com/docker-library/python/blob/81462d1d42bef466d89f1108dde44462c408d3b7/3.8-rc/buster/Dockerfile)
 	-	[`3.8.0b3-windowsservercore-ltsc2016`](https://github.com/docker-library/python/blob/836397519e72c7317eb83e40ab990abaa9e0e9d5/3.8-rc/windows/windowsservercore-ltsc2016/Dockerfile)
 	-	[`3.8.0b3-windowsservercore-1803`](https://github.com/docker-library/python/blob/836397519e72c7317eb83e40ab990abaa9e0e9d5/3.8-rc/windows/windowsservercore-1803/Dockerfile)
 	-	[`3.8.0b3-windowsservercore-1809`](https://github.com/docker-library/python/blob/836397519e72c7317eb83e40ab990abaa9e0e9d5/3.8-rc/windows/windowsservercore-1809/Dockerfile)
@@ -67,7 +67,7 @@ WARNING:
 	-	[`3.8.0b3-windowsservercore-1803`](https://github.com/docker-library/python/blob/836397519e72c7317eb83e40ab990abaa9e0e9d5/3.8-rc/windows/windowsservercore-1803/Dockerfile)
 	-	[`3.8.0b3-windowsservercore-1809`](https://github.com/docker-library/python/blob/836397519e72c7317eb83e40ab990abaa9e0e9d5/3.8-rc/windows/windowsservercore-1809/Dockerfile)
 -	`3.7.4`, `3.7`, `3`, `latest`:
-	-	[`3.7.4-buster`](https://github.com/docker-library/python/blob/d2fcc8406cebea404211e808f74fc1090122b4e8/3.7/buster/Dockerfile)
+	-	[`3.7.4-buster`](https://github.com/docker-library/python/blob/81462d1d42bef466d89f1108dde44462c408d3b7/3.7/buster/Dockerfile)
 	-	[`3.7.4-windowsservercore-ltsc2016`](https://github.com/docker-library/python/blob/d2fcc8406cebea404211e808f74fc1090122b4e8/3.7/windows/windowsservercore-ltsc2016/Dockerfile)
 	-	[`3.7.4-windowsservercore-1803`](https://github.com/docker-library/python/blob/d2fcc8406cebea404211e808f74fc1090122b4e8/3.7/windows/windowsservercore-1803/Dockerfile)
 	-	[`3.7.4-windowsservercore-1809`](https://github.com/docker-library/python/blob/d2fcc8406cebea404211e808f74fc1090122b4e8/3.7/windows/windowsservercore-1809/Dockerfile)
@@ -76,9 +76,9 @@ WARNING:
 	-	[`3.7.4-windowsservercore-1803`](https://github.com/docker-library/python/blob/d2fcc8406cebea404211e808f74fc1090122b4e8/3.7/windows/windowsservercore-1803/Dockerfile)
 	-	[`3.7.4-windowsservercore-1809`](https://github.com/docker-library/python/blob/d2fcc8406cebea404211e808f74fc1090122b4e8/3.7/windows/windowsservercore-1809/Dockerfile)
 -	`3.6.9`, `3.6`:
-	-	[`3.6.9-buster`](https://github.com/docker-library/python/blob/d2fcc8406cebea404211e808f74fc1090122b4e8/3.6/buster/Dockerfile)
+	-	[`3.6.9-buster`](https://github.com/docker-library/python/blob/81462d1d42bef466d89f1108dde44462c408d3b7/3.6/buster/Dockerfile)
 -	`3.5.7`, `3.5`:
-	-	[`3.5.7-buster`](https://github.com/docker-library/python/blob/d2fcc8406cebea404211e808f74fc1090122b4e8/3.5/buster/Dockerfile)
+	-	[`3.5.7-buster`](https://github.com/docker-library/python/blob/81462d1d42bef466d89f1108dde44462c408d3b7/3.5/buster/Dockerfile)
 -	`2.7.16`, `2.7`, `2`:
 	-	[`2.7.16-buster`](https://github.com/docker-library/python/blob/d2fcc8406cebea404211e808f74fc1090122b4e8/2.7/buster/Dockerfile)
 	-	[`2.7.16-windowsservercore-ltsc2016`](https://github.com/docker-library/python/blob/d2fcc8406cebea404211e808f74fc1090122b4e8/2.7/windows/windowsservercore-ltsc2016/Dockerfile)

+ 44 - 30
ros/README.md

@@ -16,36 +16,50 @@ WARNING:
 
 # Supported tags and respective `Dockerfile` links
 
--	[`indigo-ros-core`, `indigo-ros-core-trusty`](https://github.com/osrf/docker_images/blob/1a1c56d93f309d10c412c6323db5791fc1b23d1b/ros/indigo/ubuntu/trusty/ros-core/Dockerfile)
--	[`indigo-ros-base`, `indigo-ros-base-trusty`, `indigo`](https://github.com/osrf/docker_images/blob/1a1c56d93f309d10c412c6323db5791fc1b23d1b/ros/indigo/ubuntu/trusty/ros-base/Dockerfile)
--	[`indigo-robot`, `indigo-robot-trusty`](https://github.com/osrf/docker_images/blob/1a1c56d93f309d10c412c6323db5791fc1b23d1b/ros/indigo/ubuntu/trusty/robot/Dockerfile)
--	[`indigo-perception`, `indigo-perception-trusty`](https://github.com/osrf/docker_images/blob/1a1c56d93f309d10c412c6323db5791fc1b23d1b/ros/indigo/ubuntu/trusty/perception/Dockerfile)
--	[`kinetic-ros-core`, `kinetic-ros-core-xenial`](https://github.com/osrf/docker_images/blob/1a1c56d93f309d10c412c6323db5791fc1b23d1b/ros/kinetic/ubuntu/xenial/ros-core/Dockerfile)
--	[`kinetic-ros-base`, `kinetic-ros-base-xenial`, `kinetic`](https://github.com/osrf/docker_images/blob/1a1c56d93f309d10c412c6323db5791fc1b23d1b/ros/kinetic/ubuntu/xenial/ros-base/Dockerfile)
--	[`kinetic-robot`, `kinetic-robot-xenial`](https://github.com/osrf/docker_images/blob/1a1c56d93f309d10c412c6323db5791fc1b23d1b/ros/kinetic/ubuntu/xenial/robot/Dockerfile)
--	[`kinetic-perception`, `kinetic-perception-xenial`](https://github.com/osrf/docker_images/blob/1a1c56d93f309d10c412c6323db5791fc1b23d1b/ros/kinetic/ubuntu/xenial/perception/Dockerfile)
--	[`lunar-ros-core`, `lunar-ros-core-xenial`](https://github.com/osrf/docker_images/blob/1a1c56d93f309d10c412c6323db5791fc1b23d1b/ros/lunar/ubuntu/xenial/ros-core/Dockerfile)
--	[`lunar-ros-base`, `lunar-ros-base-xenial`, `lunar`](https://github.com/osrf/docker_images/blob/1a1c56d93f309d10c412c6323db5791fc1b23d1b/ros/lunar/ubuntu/xenial/ros-base/Dockerfile)
--	[`lunar-robot`, `lunar-robot-xenial`](https://github.com/osrf/docker_images/blob/1a1c56d93f309d10c412c6323db5791fc1b23d1b/ros/lunar/ubuntu/xenial/robot/Dockerfile)
--	[`lunar-perception`, `lunar-perception-xenial`](https://github.com/osrf/docker_images/blob/1a1c56d93f309d10c412c6323db5791fc1b23d1b/ros/lunar/ubuntu/xenial/perception/Dockerfile)
--	[`lunar-ros-core-stretch`](https://github.com/osrf/docker_images/blob/1a1c56d93f309d10c412c6323db5791fc1b23d1b/ros/lunar/debian/stretch/ros-core/Dockerfile)
--	[`lunar-ros-base-stretch`](https://github.com/osrf/docker_images/blob/1a1c56d93f309d10c412c6323db5791fc1b23d1b/ros/lunar/debian/stretch/ros-base/Dockerfile)
--	[`lunar-robot-stretch`](https://github.com/osrf/docker_images/blob/1a1c56d93f309d10c412c6323db5791fc1b23d1b/ros/lunar/debian/stretch/robot/Dockerfile)
--	[`lunar-perception-stretch`](https://github.com/osrf/docker_images/blob/1a1c56d93f309d10c412c6323db5791fc1b23d1b/ros/lunar/debian/stretch/perception/Dockerfile)
--	[`melodic-ros-core`, `melodic-ros-core-bionic`](https://github.com/osrf/docker_images/blob/1a1c56d93f309d10c412c6323db5791fc1b23d1b/ros/melodic/ubuntu/bionic/ros-core/Dockerfile)
--	[`melodic-ros-base`, `melodic-ros-base-bionic`, `melodic`, `latest`](https://github.com/osrf/docker_images/blob/1a1c56d93f309d10c412c6323db5791fc1b23d1b/ros/melodic/ubuntu/bionic/ros-base/Dockerfile)
--	[`melodic-robot`, `melodic-robot-bionic`](https://github.com/osrf/docker_images/blob/1a1c56d93f309d10c412c6323db5791fc1b23d1b/ros/melodic/ubuntu/bionic/robot/Dockerfile)
--	[`melodic-perception`, `melodic-perception-bionic`](https://github.com/osrf/docker_images/blob/1a1c56d93f309d10c412c6323db5791fc1b23d1b/ros/melodic/ubuntu/bionic/perception/Dockerfile)
--	[`melodic-ros-core-stretch`](https://github.com/osrf/docker_images/blob/1a1c56d93f309d10c412c6323db5791fc1b23d1b/ros/melodic/debian/stretch/ros-core/Dockerfile)
--	[`melodic-ros-base-stretch`](https://github.com/osrf/docker_images/blob/1a1c56d93f309d10c412c6323db5791fc1b23d1b/ros/melodic/debian/stretch/ros-base/Dockerfile)
--	[`melodic-robot-stretch`](https://github.com/osrf/docker_images/blob/1a1c56d93f309d10c412c6323db5791fc1b23d1b/ros/melodic/debian/stretch/robot/Dockerfile)
--	[`melodic-perception-stretch`](https://github.com/osrf/docker_images/blob/1a1c56d93f309d10c412c6323db5791fc1b23d1b/ros/melodic/debian/stretch/perception/Dockerfile)
--	[`bouncy-ros-core`, `bouncy-ros-core-bionic`](https://github.com/osrf/docker_images/blob/32244a8fafcf7d3c69c48e3a3aa082e4acc1fbf7/ros/bouncy/ubuntu/bionic/ros-core/Dockerfile)
--	[`bouncy-ros-base`, `bouncy-ros-base-bionic`, `bouncy`](https://github.com/osrf/docker_images/blob/32244a8fafcf7d3c69c48e3a3aa082e4acc1fbf7/ros/bouncy/ubuntu/bionic/ros-base/Dockerfile)
--	[`crystal-ros-core`, `crystal-ros-core-bionic`](https://github.com/osrf/docker_images/blob/32244a8fafcf7d3c69c48e3a3aa082e4acc1fbf7/ros/crystal/ubuntu/bionic/ros-core/Dockerfile)
--	[`crystal-ros-base`, `crystal-ros-base-bionic`, `crystal`](https://github.com/osrf/docker_images/blob/32244a8fafcf7d3c69c48e3a3aa082e4acc1fbf7/ros/crystal/ubuntu/bionic/ros-base/Dockerfile)
--	[`dashing-ros-core`, `dashing-ros-core-bionic`](https://github.com/osrf/docker_images/blob/bf5aa6ca8ca41a096dd20b7b9e4e18594795bd27/ros/dashing/ubuntu/bionic/ros-core/Dockerfile)
--	[`dashing-ros-base`, `dashing-ros-base-bionic`, `dashing`](https://github.com/osrf/docker_images/blob/bf5aa6ca8ca41a096dd20b7b9e4e18594795bd27/ros/dashing/ubuntu/bionic/ros-base/Dockerfile)
+-	[`indigo-ros-core`, `indigo-ros-core-trusty`](https://github.com/osrf/docker_images/blob/7b6d0959808500b3531e8a5448756fc95dbb2d12/ros/indigo/ubuntu/trusty/ros-core/Dockerfile)
+-	[`indigo-ros-base`, `indigo-ros-base-trusty`, `indigo`](https://github.com/osrf/docker_images/blob/7b6d0959808500b3531e8a5448756fc95dbb2d12/ros/indigo/ubuntu/trusty/ros-base/Dockerfile)
+-	[`indigo-robot`, `indigo-robot-trusty`](https://github.com/osrf/docker_images/blob/7b6d0959808500b3531e8a5448756fc95dbb2d12/ros/indigo/ubuntu/trusty/robot/Dockerfile)
+-	[`indigo-perception`, `indigo-perception-trusty`](https://github.com/osrf/docker_images/blob/7b6d0959808500b3531e8a5448756fc95dbb2d12/ros/indigo/ubuntu/trusty/perception/Dockerfile)
+-	[`jade-ros-core`, `jade-ros-core-trusty`](https://github.com/osrf/docker_images/blob/7b6d0959808500b3531e8a5448756fc95dbb2d12/ros/jade/ubuntu/trusty/ros-core/Dockerfile)
+-	[`jade-ros-base`, `jade-ros-base-trusty`, `jade`](https://github.com/osrf/docker_images/blob/7b6d0959808500b3531e8a5448756fc95dbb2d12/ros/jade/ubuntu/trusty/ros-base/Dockerfile)
+-	[`jade-robot`, `jade-robot-trusty`](https://github.com/osrf/docker_images/blob/7b6d0959808500b3531e8a5448756fc95dbb2d12/ros/jade/ubuntu/trusty/robot/Dockerfile)
+-	[`jade-perception`, `jade-perception-trusty`](https://github.com/osrf/docker_images/blob/7b6d0959808500b3531e8a5448756fc95dbb2d12/ros/jade/ubuntu/trusty/perception/Dockerfile)
+-	[`kinetic-ros-core`, `kinetic-ros-core-xenial`](https://github.com/osrf/docker_images/blob/460ddc4707530c2179788e2100d5c624cf2af3d7/ros/kinetic/ubuntu/xenial/ros-core/Dockerfile)
+-	[`kinetic-ros-base`, `kinetic-ros-base-xenial`, `kinetic`](https://github.com/osrf/docker_images/blob/460ddc4707530c2179788e2100d5c624cf2af3d7/ros/kinetic/ubuntu/xenial/ros-base/Dockerfile)
+-	[`kinetic-robot`, `kinetic-robot-xenial`](https://github.com/osrf/docker_images/blob/460ddc4707530c2179788e2100d5c624cf2af3d7/ros/kinetic/ubuntu/xenial/robot/Dockerfile)
+-	[`kinetic-perception`, `kinetic-perception-xenial`](https://github.com/osrf/docker_images/blob/460ddc4707530c2179788e2100d5c624cf2af3d7/ros/kinetic/ubuntu/xenial/perception/Dockerfile)
+-	[`kinetic-ros-core-jessie`](https://github.com/osrf/docker_images/blob/7b6d0959808500b3531e8a5448756fc95dbb2d12/ros/kinetic/debian/jessie/ros-core/Dockerfile)
+-	[`kinetic-ros-base-jessie`](https://github.com/osrf/docker_images/blob/7b6d0959808500b3531e8a5448756fc95dbb2d12/ros/kinetic/debian/jessie/ros-base/Dockerfile)
+-	[`kinetic-robot-jessie`](https://github.com/osrf/docker_images/blob/7b6d0959808500b3531e8a5448756fc95dbb2d12/ros/kinetic/debian/jessie/robot/Dockerfile)
+-	[`kinetic-perception-jessie`](https://github.com/osrf/docker_images/blob/7b6d0959808500b3531e8a5448756fc95dbb2d12/ros/kinetic/debian/jessie/perception/Dockerfile)
+-	[`lunar-ros-core`, `lunar-ros-core-xenial`](https://github.com/osrf/docker_images/blob/7b6d0959808500b3531e8a5448756fc95dbb2d12/ros/lunar/ubuntu/xenial/ros-core/Dockerfile)
+-	[`lunar-ros-base`, `lunar-ros-base-xenial`, `lunar`](https://github.com/osrf/docker_images/blob/7b6d0959808500b3531e8a5448756fc95dbb2d12/ros/lunar/ubuntu/xenial/ros-base/Dockerfile)
+-	[`lunar-robot`, `lunar-robot-xenial`](https://github.com/osrf/docker_images/blob/7b6d0959808500b3531e8a5448756fc95dbb2d12/ros/lunar/ubuntu/xenial/robot/Dockerfile)
+-	[`lunar-perception`, `lunar-perception-xenial`](https://github.com/osrf/docker_images/blob/7b6d0959808500b3531e8a5448756fc95dbb2d12/ros/lunar/ubuntu/xenial/perception/Dockerfile)
+-	[`lunar-ros-core-zesty`](https://github.com/osrf/docker_images/blob/7b6d0959808500b3531e8a5448756fc95dbb2d12/ros/lunar/ubuntu/zesty/ros-core/Dockerfile)
+-	[`lunar-ros-base-zesty`](https://github.com/osrf/docker_images/blob/7b6d0959808500b3531e8a5448756fc95dbb2d12/ros/lunar/ubuntu/zesty/ros-base/Dockerfile)
+-	[`lunar-robot-zesty`](https://github.com/osrf/docker_images/blob/7b6d0959808500b3531e8a5448756fc95dbb2d12/ros/lunar/ubuntu/zesty/robot/Dockerfile)
+-	[`lunar-perception-zesty`](https://github.com/osrf/docker_images/blob/7b6d0959808500b3531e8a5448756fc95dbb2d12/ros/lunar/ubuntu/zesty/perception/Dockerfile)
+-	[`lunar-ros-core-stretch`](https://github.com/osrf/docker_images/blob/7b6d0959808500b3531e8a5448756fc95dbb2d12/ros/lunar/debian/stretch/ros-core/Dockerfile)
+-	[`lunar-ros-base-stretch`](https://github.com/osrf/docker_images/blob/7b6d0959808500b3531e8a5448756fc95dbb2d12/ros/lunar/debian/stretch/ros-base/Dockerfile)
+-	[`lunar-robot-stretch`](https://github.com/osrf/docker_images/blob/7b6d0959808500b3531e8a5448756fc95dbb2d12/ros/lunar/debian/stretch/robot/Dockerfile)
+-	[`lunar-perception-stretch`](https://github.com/osrf/docker_images/blob/7b6d0959808500b3531e8a5448756fc95dbb2d12/ros/lunar/debian/stretch/perception/Dockerfile)
+-	[`melodic-ros-core`, `melodic-ros-core-bionic`](https://github.com/osrf/docker_images/blob/460ddc4707530c2179788e2100d5c624cf2af3d7/ros/melodic/ubuntu/bionic/ros-core/Dockerfile)
+-	[`melodic-ros-base`, `melodic-ros-base-bionic`, `melodic`, `latest`](https://github.com/osrf/docker_images/blob/460ddc4707530c2179788e2100d5c624cf2af3d7/ros/melodic/ubuntu/bionic/ros-base/Dockerfile)
+-	[`melodic-robot`, `melodic-robot-bionic`](https://github.com/osrf/docker_images/blob/460ddc4707530c2179788e2100d5c624cf2af3d7/ros/melodic/ubuntu/bionic/robot/Dockerfile)
+-	[`melodic-perception`, `melodic-perception-bionic`](https://github.com/osrf/docker_images/blob/460ddc4707530c2179788e2100d5c624cf2af3d7/ros/melodic/ubuntu/bionic/perception/Dockerfile)
+-	[`melodic-ros-core-stretch`](https://github.com/osrf/docker_images/blob/460ddc4707530c2179788e2100d5c624cf2af3d7/ros/melodic/debian/stretch/ros-core/Dockerfile)
+-	[`melodic-ros-base-stretch`](https://github.com/osrf/docker_images/blob/460ddc4707530c2179788e2100d5c624cf2af3d7/ros/melodic/debian/stretch/ros-base/Dockerfile)
+-	[`melodic-robot-stretch`](https://github.com/osrf/docker_images/blob/460ddc4707530c2179788e2100d5c624cf2af3d7/ros/melodic/debian/stretch/robot/Dockerfile)
+-	[`melodic-perception-stretch`](https://github.com/osrf/docker_images/blob/460ddc4707530c2179788e2100d5c624cf2af3d7/ros/melodic/debian/stretch/perception/Dockerfile)
+-	[`ardent-ros-core`, `ardent-ros-core-xenial`](https://github.com/osrf/docker_images/blob/7b6d0959808500b3531e8a5448756fc95dbb2d12/ros/ardent/ubuntu/xenial/ros-core/Dockerfile)
+-	[`ardent-ros-base`, `ardent-ros-base-xenial`, `ardent`](https://github.com/osrf/docker_images/blob/7b6d0959808500b3531e8a5448756fc95dbb2d12/ros/ardent/ubuntu/xenial/ros-base/Dockerfile)
+-	[`bouncy-ros-core`, `bouncy-ros-core-bionic`](https://github.com/osrf/docker_images/blob/460ddc4707530c2179788e2100d5c624cf2af3d7/ros/bouncy/ubuntu/bionic/ros-core/Dockerfile)
+-	[`bouncy-ros-base`, `bouncy-ros-base-bionic`, `bouncy`](https://github.com/osrf/docker_images/blob/460ddc4707530c2179788e2100d5c624cf2af3d7/ros/bouncy/ubuntu/bionic/ros-base/Dockerfile)
+-	[`crystal-ros-core`, `crystal-ros-core-bionic`](https://github.com/osrf/docker_images/blob/460ddc4707530c2179788e2100d5c624cf2af3d7/ros/crystal/ubuntu/bionic/ros-core/Dockerfile)
+-	[`crystal-ros-base`, `crystal-ros-base-bionic`, `crystal`](https://github.com/osrf/docker_images/blob/460ddc4707530c2179788e2100d5c624cf2af3d7/ros/crystal/ubuntu/bionic/ros-base/Dockerfile)
+-	[`dashing-ros-core`, `dashing-ros-core-bionic`](https://github.com/osrf/docker_images/blob/460ddc4707530c2179788e2100d5c624cf2af3d7/ros/dashing/ubuntu/bionic/ros-core/Dockerfile)
+-	[`dashing-ros-base`, `dashing-ros-base-bionic`, `dashing`](https://github.com/osrf/docker_images/blob/460ddc4707530c2179788e2100d5c624cf2af3d7/ros/dashing/ubuntu/bionic/ros-base/Dockerfile)
 
 # Quick reference