If I run this:
$ docker search node
I get some results in the terminal:
NAME DESCRIPTION STARS OFFICIAL AUTOMATED
node Node.js is a JavaScript-based platform for s… 5716 [OK]
mhart/alpine-node Minimal Node.js built on Alpine Linux 363
mongo-express Web-based MongoDB admin interface, written w… 261 [OK]
nodered/node-red-docker Node-RED Docker images. 157 [OK]
iojs io.js is an npm compatible platform original… 126 [OK]
prom/node-exporter 77 [OK]
my question is - is there a command I can use to find all the variants of the first result?
I am looking to get a list of all the images/tags like so:
[
"node:4.2",
"node:5.1",
"node:5.3",
"node:5.45",
"node:5.7",
"node:6.2",
"node:7",
"node:8",
"node:9",
// ...
"node:10"
]