Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
cmd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

wait-for-pg

Simple app that checks if PostgreSQL database is ready or not.

Install and usage

Option 1: use binary

wget https://github.com/mxssl/wait-for-pg/releases/download/v0.0.6/wait-for-pg-linux-amd64.tar.gz
tar xvzf wait-for-pg-linux-amd64.tar.gz
cp wait-for-pg /usr/local/bin/wait-for-pg
chmod +x /usr/local/bin/wait-for-pg

wait-for-pg check \
  --host postgres.domain.com \
  --port 5432 \
  --user pguser \
  --password pgpass \
  --dbname dbname \
  --retry 10 \
  --sleep 2

Option 2: use docker container

docker container \
  run \
  --rm \
  mxssl/wait-for-pg:v0.0.6 \
  wait-for-pg check \
    --host postgres.domain.com \
    --port 5432 \
    --user pguser \
    --password pgpass \
    --dbname dbname \
    --retry 10 \
    --sleep 2
  • If PG is ready then app returns exit code 0
  • If PG isn't ready then app returns exit code 1
You can’t perform that action at this time.