How to install and persist the postgresql database in docker

How to install and persist the postgresql database in docker

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 inspect pgdata can view the local location of the data volume)

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

docker pull postgres:9.6

Start the container

Create the /usr/postgresql/data folder for persistence

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:
  • About Docker deployment postgresql database
  • Running PostgreSQL in Docker and recommending several connection tools
  • Solution for creating multiple databases when Docker starts PostgreSQL
  • How to install Postgres 12 + pgadmin in local Docker (support Apple M1)
  • Detailed steps to upgrade PostgreSQL in Docker environment
  • How to run postgreSQL with docker
  • Database backup in docker environment (postgresql, mysql) example code
  • How to deploy docker to access postgres database

<<:  Detailed explanation of the basic usage of VUE watch listener

>>:  Markup Language - List

Recommend

Introduction to installing JDK under Linux, including uninstalling OpenJDK

1. View openjdk rpm -qa|grep jdk 2. Delete openjd...

Detailed explanation of MySql 5.7.17 free installation configuration tutorial

1. Download the mysql-5.7.17-winx64.zip installat...

MySQL extracts Json internal fields and dumps them as numbers

Table of contents background Problem Analysis 1. ...

Modification of the default source sources.list file of ubuntu20.04 LTS system

If you accidentally modify the source.list conten...

Detailed explanation of how to exit Docker container without closing it

After entering the Docker container, if you exit ...

5 basic skills of topic page design (Alibaba UED Shanmu)

This topic is an internal sharing in the second h...

xtrabackup backup and restore MySQL database

Due to some of its own characteristics (locking t...

How to package the uniapp project as a desktop application

Installing Electron cnpm install electron -g Inst...

A brief talk about JavaScript parasitic composition inheritance

Composition inheritance Combination inheritance i...

How to install Solr 8.6.2 in Docker and configure the Chinese word segmenter

1. Environment version Docker version 19.03.12 ce...

The image element img has extra blank space in IE6

When doing DIV+CSS layout of the page, it is very...

How to use physics engine joints in CocosCreator

Table of contents mousejoint mouse joint distance...

Solution to CSS flex-basis text overflow problem

The insignificant flex-basis has caused a lot of ...