2018-12-09 01:51:55 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
echo "Waiting for redis and postgres to start up..."
|
2019-02-10 00:10:34 +00:00
|
|
|
bash ./dev/docker-common/wait.sh redis:6379
|
|
|
|
bash ./dev/docker-common/wait.sh db:5432
|
2018-12-09 01:51:55 +00:00
|
|
|
echo "=== READY ==="
|
|
|
|
tail -f /dev/null
|