Compare commits

..

4 Commits

Author SHA1 Message Date
oleg 65f55528ef fix version 2024-07-22 17:53:00 -04:00
oleg 13ff201999 progress 2024-07-22 17:49:34 -04:00
oleg 1bc2a367ec fix version 2024-07-22 13:18:14 -04:00
oleg 416fdaffed fix 2024-07-22 13:17:38 -04:00
3 changed files with 20 additions and 1 deletions
+1 -1
View File
@@ -1 +1 @@
0.9.9
1.0.2
+19
View File
@@ -0,0 +1,19 @@
#!/bin/bash
DockerRegistry=cloud21.cvtt.vpn:5500
DockerImage=${DockerRegistry}/alpaca_md_day
# if [ -z ${date} ] ; then
# date=$(date -d "yesterday" +%Y%m%d)
# fi
Cmd="docker run"
Cmd="${Cmd} --network=host"
Cmd="${Cmd} --name=alpaca_md_day"
Cmd="${Cmd} --rm"
Cmd="${Cmd} ${DockerImage}"
# Cmd="${Cmd} 2024-07-17"
echo $Cmd
eval $Cmd
View File