mirror of
https://github.com/requarks/wiki.git
synced 2025-02-25 18:55:28 -06:00
8 lines
188 B
Bash
8 lines
188 B
Bash
#!/bin/sh
|
|
|
|
echo "Waiting for redis and postgres to start up..."
|
|
bash ./dev/docker-common/wait.sh redis:6379
|
|
bash ./dev/docker-common/wait.sh db:5432
|
|
echo "=== READY ==="
|
|
tail -f /dev/null
|