Membuat shell script untuk melakukan pencarian docker image beserta list tagnya. Berikut shell script yang digunakan beserta pemakaiannya :
1. Membuat file dockertags dan menyimpannya pada path /usr/local/bin/ (Ubuntu 18.04) dan jangan lupa chmod +x dockertags.
#!/bin/bash
if [ $# -lt 1 ]
then
cat << HELP
dockertags -- list all tags for a Docker image on a remote registry.
EXAMPLE:
- list all tags for ubuntu:
dockertags ubuntu
- list all php tags containing apache:
dockertags php apache
HELP
fi
image="$1"
tags=`wget -q https://registry.hub.docker.com/v1/repositories/${image}/tags -O - | sed -e 's/[][]//g' -e 's/"//g' -e 's/ //g' | tr '}' '\n' | awk -F: '{print $3}'`
if [ -n "$2" ]
then
tags=` echo "${tags}" | grep "$2" `
fi
echo "${tags}"
2. Contoh pemakaian dockertags.
hendrik@hendrik:~$ dockertags cirrusci/android-sdk
18
19
21
22
23
24
25
26
27
28
Link Referensi :