From 904828036407224dc0a03501f7ae36633b2343c0 Mon Sep 17 00:00:00 2001 From: jash Date: Thu, 6 Dec 2018 19:35:14 +0100 Subject: [PATCH] building with current tags so it fits the dockercompose file --- build.sh | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/build.sh b/build.sh index 24b65d2..122f71d 100755 --- a/build.sh +++ b/build.sh @@ -18,16 +18,16 @@ trace_rc() build_docker_image() { - + local dockerfile="Dockerfile" if [[ ""$3 != "" ]]; then dockerfile=$3 fi - trace "building docker image: $2:latest" + trace "building docker image: $2" #docker build -q $1 -f $1/$dockerfile -t $2:latest > /dev/null - docker build $1 -f $1/$dockerfile -t $2:latest + docker build $1 -f $1/$dockerfile -t $2 } @@ -46,19 +46,19 @@ build_docker_images() { fi trace "Creating cyphernodeconf image" - build_docker_image install/ cyphernodeconf + build_docker_image install/ cyphernode/cyphernodeconf:cyphernode-0.05 trace "Creating SatoshiPortal images" - build_docker_image install/SatoshiPortal/dockers/$archpath/bitcoin-core cyphernode/bitcoin - build_docker_image install/SatoshiPortal/dockers/$archpath/LN/c-lightning cyphernode/clightning $clightning_dockerfile - + build_docker_image install/SatoshiPortal/dockers/$archpath/bitcoin-core cyphernode/bitcoin:cyphernode-0.05 + build_docker_image install/SatoshiPortal/dockers/$archpath/LN/c-lightning cyphernode/clightning:cyphernode-0.05 $clightning_dockerfile + trace "Creating cyphernode images" - build_docker_image api_auth_docker/ cyphernode/gatekeeper - build_docker_image proxy_docker/ cyphernode/proxy - build_docker_image cron_docker/ cyphernode/proxycron - build_docker_image pycoin_docker/ cyphernode/pycoin - build_docker_image otsclient_docker/ cyphernode/otsclient - + build_docker_image api_auth_docker/ cyphernode/gatekeeper:cyphernode-0.05 + build_docker_image proxy_docker/ cyphernode/proxy:cyphernode-0.05 + build_docker_image cron_docker/ cyphernode/proxycron:cyphernode-0.05 + build_docker_image pycoin_docker/ cyphernode/pycoin:cyphernode-0.05 + build_docker_image otsclient_docker/ cyphernode/otsclient:cyphernode-0.05 + } build_docker_images