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