February 2020
Intermediate to advanced
404 pages
8h 42m
English
We can also install PostgreSQL via Docker. This is the most common approach these days because of reduced complexity and an easy installation process. Assuming Docker is set up on your machine, proceed as follows:
docker pull postgres:10.8
docker images
docker run --name postgres-local -p 5432:5432 -v ~/.postgres-data:/var/lib/postgresql/data -e POSTGRES_PASSWORD=YOUR_PASSWORD -d postgres:10.8
This starts the PostgreSQL server on localhost:5432 ...
Read now
Unlock full access