Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: alpine tags shouldn't be SharedTags #713

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions dockerhub_doc_config_update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -171,12 +171,12 @@ function print_official_image_file() {

# Print them all
{
if [[ "${distro}" == "${default_alpine_image}" ]]; then
# Append -alpine to each shared tag
all_tags="${all_tags}, ${all_shared_tags//, /-alpine, }-alpine"
fi
echo "Tags: ${all_tags}"
if [[ "${os}" == "windows" ]] || [[ "${distro}" == "${default_linux_image}" ]] || [[ "${distro}" == "${default_alpine_image}" ]]; then
if [[ ${os} == "alpine" ]]; then
# Append -alpine to each shared tag
all_shared_tags="${all_shared_tags//, /-alpine, }-alpine"
fi
if [[ "${os}" == "windows" ]] || [[ "${distro}" == "${default_linux_image}" ]]; then
echo "SharedTags: ${all_shared_tags}"
fi
echo "Architectures: ${arches}"
Expand Down
Loading