Releases/v0.5.0 (#203)

* v0.5.0-rc.1

* no-cache on release build and fixed cypherapp git branch

* v0.5.0 final
This commit is contained in:
kexkey
2020-10-16 16:08:06 -04:00
committed by GitHub
parent 7659a9da7c
commit f9cf6125cb
5 changed files with 33 additions and 33 deletions

View File

@@ -2,15 +2,15 @@
TRACING=1
# CYPHERNODE VERSION "v0.4.0-dev"
CONF_VERSION="v0.4.0-dev-local"
GATEKEEPER_VERSION="v0.4.0-dev-local"
TOR_VERSION="v0.4.0-dev-local"
PROXY_VERSION="v0.4.0-dev-local"
NOTIFIER_VERSION="v0.4.0-dev-local"
PROXYCRON_VERSION="v0.4.0-dev-local"
OTSCLIENT_VERSION="v0.4.0-dev-local"
PYCOIN_VERSION="v0.4.0-dev-local"
# CYPHERNODE VERSION "v0.5.0"
CONF_VERSION="v0.5.0-local"
GATEKEEPER_VERSION="v0.5.0-local"
TOR_VERSION="v0.5.0-local"
PROXY_VERSION="v0.5.0-local"
NOTIFIER_VERSION="v0.5.0-local"
PROXYCRON_VERSION="v0.5.0-local"
OTSCLIENT_VERSION="v0.5.0-local"
PYCOIN_VERSION="v0.5.0-local"
BITCOIN_VERSION="v0.20.1"
LIGHTNING_VERSION="v0.9.1"

View File

@@ -1,5 +1,5 @@
#!/bin/sh
VERSION=v0.4.0-dev
VERSION=v0.5.0
docker build . -t cyphernode/cyphernodeconf:${VERSION}

View File

@@ -3,17 +3,17 @@
export SETUP_DIR=$(pwd)/../dist
export DEFAULT_USER=$USER
export DEFAULT_CERT_HOSTNAME=disk0book.local
export PROXYCRON_VERSION=v0.4.0-dev
export PYCOIN_VERSION=v0.4.0-dev
export SETUP_VERSION=v0.4.0-dev
export PROXYCRON_VERSION=v0.5.0
export PYCOIN_VERSION=v0.5.0
export SETUP_VERSION=v0.5.0
export BITCOIN_VERSION=v0.20.1
export LIGHTNING_VERSION=v0.9.1
export DEFAULT_DATADIR_BASE=$HOME
export GATEKEEPER_VERSION=v0.4.0-dev
export TOR_VERSION=v0.4.0-dev
export PROXY_VERSION=v0.4.0-dev
export OTSCLIENT_VERSION=v0.4.0-dev
export NOTIFIER_VERSION=v0.4.0-dev
export GATEKEEPER_VERSION=v0.5.0
export TOR_VERSION=v0.5.0
export PROXY_VERSION=v0.5.0
export OTSCLIENT_VERSION=v0.5.0
export NOTIFIER_VERSION=v0.5.0
export EDITOR=/usr/bin/nano
export TRAEFIK_VERSION="v1.7.9-alpine"
export MOSQUITTO_VERSION="1.6"

22
dist/setup.sh vendored
View File

@@ -784,17 +784,17 @@ ALWAYSYES=0
SUDO_REQUIRED=0
AUTOSTART=0
# CYPHERNODE VERSION "v0.4.0-dev"
SETUP_VERSION="v0.4.0-dev"
CONF_VERSION="v0.4.0-dev"
GATEKEEPER_VERSION="v0.4.0-dev"
TOR_VERSION="v0.4.0-dev"
PROXY_VERSION="v0.4.0-dev"
NOTIFIER_VERSION="v0.4.0-dev"
PROXYCRON_VERSION="v0.4.0-dev"
OTSCLIENT_VERSION="v0.4.0-dev"
PYCOIN_VERSION="v0.4.0-dev"
CYPHERAPPS_VERSION="dev"
# CYPHERNODE VERSION "v0.5.0"
SETUP_VERSION="v0.5.0"
CONF_VERSION="v0.5.0"
GATEKEEPER_VERSION="v0.5.0"
TOR_VERSION="v0.5.0"
PROXY_VERSION="v0.5.0"
NOTIFIER_VERSION="v0.5.0"
PROXYCRON_VERSION="v0.5.0"
OTSCLIENT_VERSION="v0.5.0"
PYCOIN_VERSION="v0.5.0"
CYPHERAPPS_VERSION="v0.5.0"
BITCOIN_VERSION="v0.20.1"
LIGHTNING_VERSION="v0.9.1"
TRAEFIK_VERSION="v1.7.9-alpine"

View File

@@ -13,7 +13,7 @@ image() {
echo "Building and pushing $image from $dir for $arch using $dockerfile tagging as $v1, $v2 and $v3..."
docker build -t cyphernode/${image}:${arch}-${v3} -t cyphernode/${image}:${arch}-${v2} -t cyphernode/${image}:${arch}-${v1} ${dir}/. \
docker build --no-cache -t cyphernode/${image}:${arch}-${v3} -t cyphernode/${image}:${arch}-${v2} -t cyphernode/${image}:${arch}-${v1} ${dir}/. \
&& docker push cyphernode/${image}:${arch}-${v3} \
&& docker push cyphernode/${image}:${arch}-${v2} \
&& docker push cyphernode/${image}:${arch}-${v1}
@@ -65,9 +65,9 @@ aarch64_docker="arm64"
#arch_docker=${aarch64_docker}
arch_docker=${x86_docker}
v1="v0-dev"
v2="v0.4-dev"
v3="v0.4.0-dev"
v1="v0"
v2="v0.5"
v3="v0.5.0"
echo "\nBuilding Cyphernode Core containers\n"
echo "arch_docker=$arch_docker\n"