UnisKB/installer/start-all.sh

19 lines
440 B
Bash
Raw Normal View History

2025-04-18 06:10:16 +00:00
#!/bin/bash
2025-04-18 09:02:59 +00:00
set -e
2025-04-18 06:10:16 +00:00
if [ "$MAXKB_DB_HOST" = "127.0.0.1" ]; then
2025-04-21 07:39:29 +00:00
echo "PostgreSQL starting..."
/usr/bin/start-postgres.sh &
sleep 10
wait-for-it 127.0.0.1:5432 --timeout=120 --strict -- echo "PostgreSQL started."
2025-04-18 06:10:16 +00:00
fi
if [ "$MAXKB_REDIS_HOST" = "127.0.0.1" ]; then
2025-04-21 07:39:29 +00:00
echo "Redis starting..."
/usr/bin/start-redis.sh &
sleep 5
wait-for-it 127.0.0.1:6379 --timeout=60 --strict -- echo "Redis started."
2025-04-18 06:10:16 +00:00
fi
/usr/bin/start-maxkb.sh