PostgreSQL 9.6 on Centos 7
10K+
Dockerfile to build PostgreSQL on CentOS 7
To build the image
# docker build --rm -t <yourname/postgresql .
docker run --name=postgresql -d -p 5432:5432 <yourname>/postgresql
To connect to the container as the administrative postgres user:
docker run -it --rm --volumes-from=postgresql <yourname>/postgres sudo -u
postgres -H psql
You can create a postgresql superuser at launch by specifying DB_USER and
DB_PASS variables. You may also create a database by using DB_NAME.
docker run --name postgresql -d \
-e 'DB_USER=username' \
-e 'DB_PASS=ridiculously-complex_password1' \
-e 'DB_NAME=my_database' \
<yourname>/postgresql
To connect to your database with your newly created user:
psql -U username -h $(docker inspect --format {{.NetworkSettings.IPAddress}} postgresql)
Content type
Image
Digest
Size
109.9 MB
Last updated
about 6 years ago
docker pull arnabdnandy1706/postgresql96-centos7