Compare commits

...

2 Commits

Author SHA1 Message Date
oleg ce68165eef fix 2024-07-24 19:57:30 -04:00
oleg 3932cbde37 fix 2024-07-24 13:53:26 -04:00
3 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -1 +1 @@
1.0.6 1.0.8
+2 -2
View File
@@ -59,7 +59,7 @@ else
fi fi
Cmd="docker run" Cmd="docker run"
Cmd="${Cmd} --pull" Cmd="${Cmd} --pull=always"
Cmd="${Cmd} --network=host" Cmd="${Cmd} --network=host"
Cmd="${Cmd} --name=${ContainerName}" Cmd="${Cmd} --name=${ContainerName}"
Cmd="${Cmd} --rm" Cmd="${Cmd} --rm"
@@ -74,7 +74,7 @@ if [ "$?" != "0" ] ; then
fi fi
# truncate to avoid false positive # truncate to avoid false positive
date_to_load=$(echo "${date_to_load} | xargs") date_to_load=$(echo "${date_to_load}" | xargs)
if [ -n "${date_to_load}" ]; then if [ -n "${date_to_load}" ]; then
echo "Saving date_to_load to ${LastDayFile}" echo "Saving date_to_load to ${LastDayFile}"
echo ${date_to_load} > ${LastDayFile} echo ${date_to_load} > ${LastDayFile}
+1
View File
@@ -11,6 +11,7 @@ if [ -z ${date} ] ; then
fi fi
Cmd="docker run" Cmd="docker run"
Cmd="${Cmd} --pull=always"
Cmd="${Cmd} --network=host" Cmd="${Cmd} --network=host"
Cmd="${Cmd} --name=crypto_md_day.${host}.${date}" Cmd="${Cmd} --name=crypto_md_day.${host}.${date}"
Cmd="${Cmd} --rm" Cmd="${Cmd} --rm"