forked from jito-labs/shredstream-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathp
More file actions
executable file
·21 lines (16 loc) · 625 Bytes
/
p
File metadata and controls
executable file
·21 lines (16 loc) · 625 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env bash
set -eux
# Some container vars
TAG=${TAG:-${USER}-dev} # READ tag in from env var, defaulting to ${USER}-dev
ORG="jitolabs"
DOCKER_BUILDKIT=1 docker build -t "$ORG/jito-shredstream-proxy:${TAG}" .
docker push "${ORG}/jito-shredstream-proxy:${TAG}"
# push image
#VERSION=v0.2.0
#docker build -t jitolabs/jito-shredstream-proxy:$VERSION .
#docker push jitolabs/jito-shredstream-proxy:$VERSION
# deploy
#VERSION=v0.2.0
#git tag $VERSION -f; git push --tags -f
#docker tag jitolabs/jito-shredstream-proxy:$VERSION jitolabs/jito-shredstream-proxy:latest
#docker push jitolabs/jito-shredstream-proxy:latest