Skip the Docker installation steps 1. Pull the postgresql image docker pull postgresql 2. Create a local volume. The data volume can be shared and reused between containers. By default, it will always exist even if the container is deleted ( docker volume create pgdata 3. Start the container docker run --name postgres2 -e POSTGRES_PASSWORD=password -p 5432:5432 -v pgdata:/var/lib/postgresql/data -d postgres 4. Enter the postgres container and execute SQL docker exec -it postgres2 bash psql -h localhost -p 5432 -U postgres --password At this point, postgresql is installed successfully. Supplement: Let's see how to install postgresql in docker Pull the image Start the container Create the docker run --name postgres -e POSTGRES_PASSWORD=password -p 5432:5432 -v /usr/postgresql/data:/var/lib/postgresql/data -d postgres Enter postgresql # Enter the container docker exec -it postgres /bin/bash # Enter the folder cd /usr/lib/postgresql/9.6/bin # Enter postgresql, the default postgres user psql -Upostgres This is the end of this article about the steps to install and persist the postgresql database in docker. For more information about installing the postgresql database in docker, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Detailed explanation of the basic usage of VUE watch listener
In actual use, it is often necessary to share the...
This article shares the specific code of Javascri...
[Required] UserInterface PhotoShop/Fireworks Desi...
I found a lot of websites that use drop-down or sl...
Preface Because the mini program upload requires ...
This command modifies the data table ff_vod and a...
Transactions in MySQL are automatically committed...
This article example shares the specific code of ...
Illustrated CentOS 7.3 installation steps for you...
>1 Start the database In the cmd command windo...
Table of contents VMware BurpSuite 1. Virtual mac...
3D coordinate concept When an element rotates, it...
React multiple ways to get the value of the input...
exhibit design Password strength analysis The pas...
Overview There are many open source network monit...