8 lines
174 B
Bash
8 lines
174 B
Bash
#!/bin/sh
|
|
|
|
echo "Waiting for redis and postgres to start up..."
|
|
bash ./dev/docker/wait.sh redis:6379
|
|
bash ./dev/docker/wait.sh db:5432
|
|
echo "=== READY ==="
|
|
tail -f /dev/null
|