mirror of
https://github.com/lingble/talos.git
synced 2025-12-06 23:55:24 +00:00
feat: import core service containers from local store (#309)
Signed-off-by: Andrew Rynhard <andrew@andrewrynhard.com>
This commit is contained in:
@@ -1,18 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
DEFAULT_REPO="autonomy"
|
||||
|
||||
REPO="${1}"
|
||||
TAG="${2}"
|
||||
|
||||
|
||||
images=( trustd proxyd blockd osd talos )
|
||||
for i in ${images[@]}; do
|
||||
if [ "${REPO}" != "${DEFAULT_REPO}" ]; then
|
||||
docker tag ${DEFAULT_REPO}/${i}:${TAG} ${REPO}/${i}:${TAG}
|
||||
fi
|
||||
docker push ${REPO}/${i}:${TAG}
|
||||
done
|
||||
|
||||
Reference in New Issue
Block a user