Gentoo postgresql based on tutumcloud/postgresql
488
Base docker image to run a PostgreSQL database server
To create the image hasufell/gentoo-postgresql, execute the following command on the folder you cloned this repository in:
docker build -t hasufell/gentoo-postgresql .
To run the image and bind to port 5432:
docker run -d -p 5432:5432 hasufell/gentoo-postgresql
The first time that you run your container, a new user postgres with all privileges
will be created in PostgreSQL with a random password. To get the password, check the logs
of the container by running:
docker logs <CONTAINER_ID>
You will see an output like the following:
========================================================================
You can now connect to this PostgreSQL Server using:
psql -h <host> -p <port> --username=postgres
and enter the password 'HHrUZyI6ubWF' when prompted
Please remember to change the above password as soon as possible!
========================================================================
In this case, HHrUZyI6ubWF is the password assigned to the postgres user.
Done!
If you want to use a preset password instead of a random generated one, you can
set the environment variable POSTGRES_PASS to your specific password when running the container:
docker run -d -p 5432:5432 -e POSTGRES_PASS="mypass" hasufell/gentoo-postgresql
Coming soon!
Coming soon!
You may want to mount /etc/postgresql, /var/log/postgresql and
/var/lib/postgresql in from the host or a container.
Content type
Image
Digest
sha256:a2aa8d647…
Size
509.5 MB
Last updated
almost 10 years ago
docker pull hasufell/gentoo-postgresql