1
0
Fork 0
mirror of https://github.com/imjasonh/kontain.me synced 2026-07-20 21:19:12 +00:00

base viz on nixery.dev/graphviz

This commit is contained in:
Jason Hall 2020-12-09 13:19:27 -05:00
parent 8ed02d0e48
commit da18b9956c
4 changed files with 4 additions and 16 deletions

View file

@ -31,11 +31,6 @@ function deploy_mirror() { deploy mirror ;}
function deploy_random() { deploy random ;}
function deploy_viz() { deploy viz ;}
function build_viz_base() {
docker build -t gcr.io/${project}/graphviz -f cmd/viz/Dockerfile cmd/viz/
docker push gcr.io/${project}/graphviz
}
case ${1:-"all"} in
api) deploy_api;;
app) deploy_app;;
@ -44,7 +39,6 @@ case ${1:-"all"} in
mirror) deploy_mirror;;
random) deploy_random;;
viz) deploy_viz;;
viz_base) build_viz_base; deploy_viz;;
all)
deploy_api
@ -53,7 +47,7 @@ case ${1:-"all"} in
deploy_ko
deploy_mirror
deploy_random
build_viz_base; deploy_viz
deploy_viz
;;
esac