Compare commits

..

2 Commits

Author SHA1 Message Date
62d76b0f85 minor 2025-03-12 13:14:37 -04:00
3e1a22d572 minor 2025-02-07 12:49:41 -05:00
2 changed files with 10 additions and 11 deletions

View File

@ -6,7 +6,6 @@ COPY ${FROM_DIR}/requirements.txt /
COPY cvttpy /cvttpy
# COPY ${FROM_DIR}/.creds /.creds
COPY ${FROM_DIR}/crypto_md_day.sh /crypto_md_day.sh
RUN pip install --upgrade pip --root-user-action=ignore

View File

@ -51,16 +51,16 @@ fi
export PYTHONPATH=/
Cmd="python3.12"
Cmd="${Cmd} cvttpy/research/utils/archive_ts_md.py"
Cmd="${Cmd} --config=http://cloud16.cvtt.vpn:6789/apps/md_recorder"
Cmd="${Cmd} --db_credentials_key=${CredKey}"
Cmd="${Cmd} --credentials_file=/.creds"
Cmd="${Cmd} --date=${Date}"
Cmd="${Cmd} --schemas=${Schemas}"
Cmd="${Cmd} --root_dir=/app/data/${DbHost}"
Cmd="${Cmd} --format=SQLite"
Cmd="${Cmd} --compress"
# Cmd="${Cmd} --log_file=/logs/%T.crypto_md_day.log"
Cmd+=" cvttpy/research/utils/archive_ts_md.py"
Cmd+=" --config=http://cloud16.cvtt.vpn:6789/apps/md_recorder"
Cmd+=" --db_credentials_key=${CredKey}"
Cmd+=" --credentials_file=/.creds"
Cmd+=" --date=${Date}"
Cmd+=" --schemas=${Schemas}"
Cmd+=" --root_dir=/app/data/${DbHost}"
Cmd+=" --format=SQLite"
Cmd+=" --compress"
# Cmd+=" --log_file=/logs/%T.crypto_md_day.log"
echo ${Cmd}
eval ${Cmd}