Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## Before ``` # Wait for postgis wait-for-it -h ${G3WSUITE_POSTGRES_HOST:-postgis} -p ${G3WSUITE_POSTGRES_PORT:-5432} -t 60 ``` ## After ``` # Wait for postgis until pg_isready -h ${G3WSUITE_POSTGRES_HOST:-postgis} -p ${G3WSUITE_POSTGRES_PORT:-5432}; do echo "wait 30s until is ready" sleep 30; done ```
- Loading branch information