You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
planka_custom/docker-entrypoint.sh

13 lines
301 B
Bash

#!/bin/bash
set -e
for i in $(seq 1 30); do
echo "Attempting to initialize the database and start the Planka (attempt $i)..."
node db/init.js &&
exec node app.js --prod "$@" &&
break || s=$?;
echo "Failed (attempt $i). Waiting 5 seconds before the next attempt...";
sleep 5;
done
exit $s