alpine/psql

Sponsored OSS

By alpine

Updated 2 days ago

psql — The PostgreSQL Command-Line Client

Image
Integration & Delivery
0

50K+

psql — The PostgreSQL Command-Line Client

source of Dockerfile

https://github.com/alpine-docker/multi-arch-libs/blob/master/psql/Dockerfile

Daily CI build logs

N/A

Docker image tags

https://hub.docker.com/repository/docker/alpine/psql/tags

quick start
$ alias psql="docker run -ti --rm alpine/psql"

$ psql -d <db-name> -U <username> -W

or

# make sure you have set the variable $PSQL_CONNECTION_STRING, it can get from aws secret manager, azure keyVault, or setup directly.
# sample for reference: 
# postgres://psqladmin:Eha72NtzKe01@postgresql.example:5432/psql?sslmode=require 

$ psql $PSQL_CONNECTION_STRING 

or

# run sql script directly

$ psql $PSQL_CONNECTION_STRING -f policy.sql

Docker Pull Command

docker pull alpine/psql