debug messages

This commit is contained in:
Christos Alexiou 2025-02-20 21:29:55 +02:00
parent 18ddcd092e
commit 77f5c05a5b
1 changed files with 4 additions and 2 deletions

View File

@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash
echo "Starting runner.sh" echo "Starting runner.sh..."
# set defaults for Docker-related variables # set defaults for Docker-related variables
export APP_PORT="${APP_PORT:-4001}" export APP_PORT="${APP_PORT:-4001}"
@ -96,7 +96,9 @@ if [[ -n "${REDIS_PASSWORD}" ]]; then
else else
redis-server "${REDIS_CONFIG}" >/dev/stdout 2>&1 & redis-server "${REDIS_CONFIG}" >/dev/stdout 2>&1 &
fi fi
/bbcouch-runner.sh &
echo "Starting callback CouchDB runner..."
./bbcouch-runner.sh &
# only start minio if use s3 isn't passed # only start minio if use s3 isn't passed
if [[ -z "${USE_S3}" ]]; then if [[ -z "${USE_S3}" ]]; then