replacing "latest" with real docker image tag
This commit is contained in:
parent
3bd31b7d8b
commit
e35b15f024
2
VERSION
2
VERSION
@ -1 +1 @@
|
||||
2.0.3,using HA trading-calendar and config service
|
||||
2.0.4,replacing "latest" with real docker image tag
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
#!/bin/bash
|
||||
|
||||
usage() {
|
||||
echo "Usage: $0 -N <num_symbols> [-L <LogDir>] [-d <YYYYMMDD Date>]"
|
||||
echo "Usage: $0 -N <num_symbols> [-L <LogDir>] [-d <YYYYMMDD Date>] [-t <docker_image_tag>]"
|
||||
exit 1
|
||||
}
|
||||
|
||||
@ -45,12 +45,12 @@ export -f get_prev_business_day
|
||||
|
||||
# ----- Settings
|
||||
DockerRegistry=cloud21.cvtt.vpn:5500
|
||||
DockerImage=${DockerRegistry}/alpaca_hbar #:latest
|
||||
ContainerName=alpaca_hbar
|
||||
LogDir=/home/cvtt/prod/logs
|
||||
ImageTag=0.1.7
|
||||
# ----- Settings
|
||||
|
||||
while getopts ":d:N:L:" opt; do
|
||||
while getopts ":d:N:L:t:" opt; do
|
||||
case ${opt} in
|
||||
d )
|
||||
date_to_load=$OPTARG
|
||||
@ -61,6 +61,9 @@ while getopts ":d:N:L:" opt; do
|
||||
L )
|
||||
LogDir=$OPTARG
|
||||
;;
|
||||
t )
|
||||
ImageTag=$OPTARG
|
||||
;;
|
||||
\? )
|
||||
echo "Invalid option: -$OPTARG" >&2
|
||||
usage
|
||||
@ -72,6 +75,9 @@ while getopts ":d:N:L:" opt; do
|
||||
esac
|
||||
done
|
||||
|
||||
DockerImage=${DockerRegistry}/alpaca_hbar/${ImageTag} #:latest
|
||||
|
||||
|
||||
if is_container_running "$ContainerName"; then
|
||||
echo "Container ${ContainerName} is already running."
|
||||
exit 3
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user