In this guide we are going to explore how to run Postresql 14 locally with docker and docker compose. This can be helpful if you want to run Postgresql locally without installing it in your server or if you want to run multiple versions of Postgresql seamlessly.
Also check:
- How to run PGAdmin 4 Using Docker and Docker-Compose
- How to run yugabytedb in docker and docker-compose
- How to Install & Configure Postgres 14 on FreeBSD 13
- How to Install and Configure Postgres 14 Ubuntu 20.04
- How to run MsSQL Server 2019 with Docker and Docker-Compose
- How to run Mysql 8 with Docker and Docker-Compose
- How to run Redis 6 with Docker and Docker-Compose
- How to run Cassandra 4 with Docker and Docker-Compose
Prerequisites
To follow along, ensure you have the following:
- Docker installed locally and permissions to use it to launch containers
- Docker compose is installed locally
- Basic knowledge of the command line
Using the docker run command
We are going to use the docker run
command to achieve our goal. The version of postgres that we want is postgres:14-alpine
- a minimal version of Postgres container.
|
|
In the above command:
- The
-d
instructs docker container to run as a detached process. It run container in background and print container ID -p
is for port mapping. We are instructing the container to expose the container port externally. Container port5432
is mapped to host port5432
. That means the service can be accessed throughlocalhost:5432
- The
-v
directive is used to mount volumes. In our case we are mounting the container volume/var/lib/postgresql/data
to host path~/apps/postgres
. Containers are ephemeral devices that will contain its data for the time it is running. Once a container is stopped, its data is lost. Mounting volumes ensures that the data is added to a host path that can be reused when the container is restarted. - The
-e
argument is for the environment variables. The supplied environment variables will be used to set up a Postgres user, password and a database.
To check that our container is running as expected, use the docker ps
command:
|
|
In my case the container is running as my-postgres
the name we gave it. We can login to the container using the docker exec
command while executing /bin/bash
interactively. Here we are also logging in to posgtres with the credentials we specified above and checking the version.
|
|
If you need to clean up the container when not in use, you can stop and remove the container using this command:
|
|
Using the docker-compose tool
We can achieve the same functionality with docker-compose
. Docker Compose is a tool for defining and running multi-container Docker applications. With Compose, you use a YAML file to configure your applicationās services.
Docker Compose allows you to define the service (Postgres in our case) with properties like the image
to use, ports
to expose, volumes
to mount and environment
variables.
Here is how we would use docker-compose
to achieve the functionality above. Save this as docker-compose.yaml
:
|
|
Now bring up the containers:
|
|
The commands:
up
brings up the container-d
in a detached mode
Verify the container processes using the ps command:
|
|
To login to the container and login to postgres, use this:
|
|
Conclusion
In this guide we managed to run Postgres 14 as a container in our system, we explored using the docker run
command while passing the required arguments an alternative approach of simplifying the process with docker-compose