Run PostgreSQL in Podman Container @QuickNotepadTutorial
Run PostgreSQL in Podman Container  @QuickNotepadTutorial
Uploaded March 2022 | Updated September 2026, 2 weeks ago
in This Tutorial you will Learn " How To Run PostgreSQL in Podman Container "

PostgreSQL is an advanced, enterprise-class, and open-source relational database system.
Podman is an OCI-compliant container runtime that works without a daemon.

cat /etc/system-release ; sestatus ; dnf groupinstall "Development Tools" -y
dnf install podman -y
podman pod create --name postgre-sql -p 9876:80
podman pod ps

podman run --pod postgre-sql \
-e 'PGADMIN_DEFAULT_EMAIL=admin@example.com' \
-e 'PGADMIN_DEFAULT_PASSWORD=Passw0rd' \
--name pgadmin \
-d docker.io/dpage/pgadmin4:latest

podman pull docker.io/library/postgres:14
podman images
podman run --name db --pod=postgre-sql -d \
-e POSTGRES_USER=admin \
-e POSTGRES_PASSWORD=Passw0rd \
docker.io/library/postgres:14

podman pod ps
podman pod stats postgre-sql
http://127.0.0.1:9876
Run PostgreSQL in Podman ContainerHow To Use Redis With Python | Example To use Redis on Python 3How To Install Java JDK and JRE on Oracle Linux Server 9How to Install Anaconda Python on Oracle Linux Server 9How To Install Ruby on Rails with Mysql on Rocky Linux 8.5Setting up Cassandra for remote accessHow To Deploy Microsoft SQL Server 2019 on Rocky Linux 8.5Deploy run RethinkDB On Docker  Docker-Compose Rocky Linux 8.5How To Install Apache, MariaDB, PHP LAMP on Oracle Linux 9Running Joomla on Docker | Deploy Joomla On DockerHow To install & Secure Redis Server On Rocky Linux 8How to Install Composer with PHP
Quick Notepad Tutorial |

Run PostgreSQL in Podman Container

SHARE TO X SHARE TO REDDIT SHARE TO FACEBOOK WALLPAPER