mirror of
https://github.com/clearlinux/dockerfiles.git
synced 2026-04-28 19:13:48 +00:00
For version format x.y.z, three tags as below
tag: x.y.z
tag1: x.y
tag2: x
They all point to the latest image.
Once app got updated (minor updates, z to z1), the tag x.y.z
will be replaced by x.y.z1, but the tag x or x.y may still
keep.
Signed-off-by: Qi Zheng <qi.zheng@intel.com>
8 lines
95 B
Bash
Executable File
8 lines
95 B
Bash
Executable File
#!/bin/bash
|
|
. ../docker-hooks.sh
|
|
|
|
image="clearlinux/ruby"
|
|
package=ruby
|
|
|
|
do_tag $image $package
|