Welcome to mirror list, hosted at ThFree Co, Russian Federation.

post_push « hooks « plugin « docker « tools - github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bc700783eb3ed8d77f0bfa3c6acdcb0b914f6188 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash
set -ex

WORK_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
source "$WORK_DIR/../../lib/common"

for TARGET_ARCH in "${ALL_TARGET_ARCH[@]}"; do
    TagDockerImageAliases "${TARGET_ARCH}"
    PushDockerImageAliases "${TARGET_ARCH}"
done