mirror of
https://github.com/outbackdingo/matchbox.git
synced 2026-01-27 18:19:36 +00:00
12 lines
266 B
Bash
Executable File
12 lines
266 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
REPO=dghubble/bootcfg
|
|
QUAY_REPO=quay.io/dghubble/bootcfg
|
|
GIT_SHA=$(git rev-parse HEAD)
|
|
|
|
# quay.io
|
|
docker tag $REPO:$GIT_SHA $QUAY_REPO:latest
|
|
docker tag $REPO:$GIT_SHA $QUAY_REPO:$GIT_SHA
|
|
docker push $QUAY_REPO:latest
|
|
docker push $QUAY_REPO:$GIT_SHA
|