PostgreSQL docker
Setting up PostgreSQL using docker
Introduction
PostgreSQL stands out as one of the top choices among open-source relational databases in today’s market. As a data engineer, SQL is a language I constantly engage with. Whether it’s crafting quick prototypes using Streamlit or whipping up dashboards with tools like Metabase or Apache Superset, having a local database to load datasets is essential.
In this article, I’ll guide you through setting up PostgreSQL on your local machine using Docker. Docker proves invaluable, particularly when exploring various open-source tools locally to gain hands-on experience. So, let’s jump right into configuring PostgreSQL.
Prerequisites
Before diving in, make sure you have Docker Desktop installed on your machine, and ensure that the Docker daemon is up and running.
I’ll be walking through the steps on a Mac, but fear not! With some slight adjustments, you can follow along on Windows or Linux OS as well.
Steps to setup postgresql
Open terminal and execute the following commands:
docker pull postgres
- Downloads the latest PostgreSQL Docker image from the Docker Hub repository.docker volume create postgres_data_volume
- Creates a Docker volume named postgres_data_volume to persistently store PostgreSQL data.docker run --name postgres_local_db -e POSTGRES_PASSWORD=P0stGr3s -e POSTGRES_USER=postgres_user -d -p 5432:5432 -v postgres_data_volume:/Users/user/Documents/myDir/postgres/data postgres
- Runs a Docker container named postgres_local_db with specified environment variables for password and username, exposing PostgreSQL on port 5432, and attaching the created volume for data persistence.- Validate the container running using either
docker ps
command or docker desktop.
Testing the connection
To test the connection, we’ll use DBeaver, a powerful database tool. But feel free to use any tool that supports PostgreSQL.
- Open Dbeaver
- Click on
Connect to a database
button - Select
PostgreSQL
- Insert the username and password specified in the
step 3
from above section. - Click on
Test Connection
button on the wizard
With the correct setup, you should be able to connect to the postgres database.
Next Steps
There are many data sources available to import in the database to start practicing upon SQL on Dbeaver. Here is a suggested article that you can try to get started with it.
Happy querying!
Share this post
Twitter
Reddit
LinkedIn
Pinterest
Email