#!/bin/bash LogDir=/logs Cmd="python3.12" Cmd+=" cvttpy/apps/microservices/book_keeper/book_keeper.py" Cmd+=" --config=${CONFIG_FILE}" Cmd+=" --log_file=${LogDir}/${BKPR_LOG_FILE}" Cmd+=" --credentials_file=${BKPR_CREDS_FILE:-/config/.creds}" Cmd+=" ${BKPR_ADD_ARGS}" echo ${Cmd} exec ${Cmd}