PostgreSQL Docker image based on Rocky Linux
registry.redhat.io/rhel8/postgresql-13 is equivelent RHEL Official PostGres Image
RHEL official Postgres 13 is at https://github.com/docker-library/postgres
docker build -t ark_postgres:latest .
Repository pushes occur automatically when code is checked in.
helm repo add arkcase https://arkcase.github.io/ark_helm_charts/
helm install ark-activemq arkcase/ark-postgres
helm uninstall ark-postgres
docker run -d --name ark_postgres -e POSTGRESQL_USER=user -e POSTGRESQL_PASSWORD=pass -e POSTGRESQL_DATABASE=db -p 5432:5432 -e MYSQL_ROOT_PASSWORD=mypass -p 3306:3306 ark_postgres:latest
docker exec -it ark_postgres /bin/bash
docker stop ark_postgres
docker rm ark_postgres
kubectl create -f pod_ark_postgres.yaml
kubectl exec -it pod/postgres -- bash
kubectl delete -f pod_ark_postgres.yaml