Compare commits

..

No commits in common. "e1bc3ee663e813452ab5003e650491a850236a4c" and "4aa4bd701a2ae96b0f4e749d748455bbeeada29e" have entirely different histories.

5 changed files with 9 additions and 15 deletions

View File

@ -1 +0,0 @@
0.0.6

View File

@ -4,11 +4,10 @@
RegistryService=cloud21.cvtt.vpn:5500 RegistryService=cloud21.cvtt.vpn:5500
ImageName=md_recorder ImageName=md_recorder
BashFunctionCode=$(realpath $(dirname ${0}))/../../dckr_bld_functions.sh BashFunctionCode=$(realpath $(dirname ${0}))/../../dckr_bld_functions.sh
ImageVersion=$(cat $(realpath $(dirname ${0}))/VERSION)
# --- Settings # --- Settings
usage() { usage() {
echo "Usage: $0 -L <library>:<library_version> [-V <image_version>] " echo "Usage: $0 -V <image_version> -L <library>:<library_version>"
exit 1 exit 1
} }

View File

@ -3,7 +3,7 @@ CONFIG_COMM_SETTINGS=comm/pubsub/redis/docker_microservices
CONFIG_FILE="http://${CONFIG_SERVICE}/apps/cvtt_musvc" CONFIG_FILE="http://${CONFIG_SERVICE}/apps/cvtt_musvc"
CVTT_USER=1001:1001 CVTT_USER=1001:1001
CVTT_VERSION=0.0.6 CVTT_VERSION=0.0.3
# MDGW_CREDS_FILE=.creds # MDGW_CREDS_FILE=.creds
MDGW_LOG_FILE=%T.md_gateway.log MDGW_LOG_FILE=%T.md_gateway.log

View File

@ -1 +0,0 @@
0.0.6

View File

@ -2,23 +2,20 @@
# --- Settings # --- Settings
RegistryService=cloud21.cvtt.vpn:5500 RegistryService=cloud21.cvtt.vpn:5500
ValidImages=(md_gateway)
ValidImages=() ValidImages=(oe_gateway)
ValidImages+=(md_gateway) ValidImages=(ac_gateway)
ValidImages+=(oe_gateway) ValidImages=(pricer)
ValidImages+=(ac_gateway) ValidImages=(coordinator)
ValidImages+=(pricer) ValidImages=(bookkeeper)
ValidImages+=(coordinator)
ValidImages+=(bookkeeper)
ValidImages+=(risk_manager) ValidImages+=(risk_manager)
ValidImages+=(quant) ValidImages+=(quant)
ValidImages+=(trader) ValidImages+=(trader)
BashFunctionCode=$(realpath $(dirname ${0}))/../dckr_bld_functions.sh BashFunctionCode=$(realpath $(dirname ${0}))/../dckr_bld_functions.sh
ImageVersion=$(cat $(realpath $(dirname ${0}))/VERSION)
# --- Settings # --- Settings
usage() { usage() {
echo "Usage: $0 -I <image_name> -L <library>:<library_version> [-V <image_version>] " echo "Usage: $0 -I <image_name> -V <image_version> -L <library>:<library_version>"
exit 1 exit 1
} }