feat: import core service containers from local store (#309)

Signed-off-by: Andrew Rynhard <andrew@andrewrynhard.com>
This commit is contained in:
Andrew Rynhard
2019-01-15 18:46:41 -08:00
committed by GitHub
parent 07570a3469
commit 25fca3d68d
25 changed files with 219 additions and 133 deletions

View File

@@ -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