What PostgreSQL clients are available through microdnf install? I'm trying to install a client via my Dockerfile.
I've tried multiple commands I've seen recommended and several guesses, but none of them worked for me:
microdnf install -y postgresql-client
microdnf install -y postgresql
microdnf install -y psql
etc.
Image being used: https://hub.docker.com/r/jboss/keycloak/
sh-4.4$ cat /etc/os-release
NAME="Red Hat Enterprise Linux"
VERSION="8.3 (Ootpa)"
ID="rhel"
ID_LIKE="fedora"
VERSION_ID="8.3"
PLATFORM_ID="platform:el8"
PRETTY_NAME="Red Hat Enterprise Linux 8.3 (Ootpa)"
ANSI_COLOR="0;31"
CPE_NAME="cpe:/o:redhat:enterprise_linux:8.3:GA"
HOME_URL="https://www.redhat.com/"
BUG_REPORT_URL="https://bugzilla.redhat.com/"
REDHAT_BUGZILLA_PRODUCT="Red Hat Enterprise Linux 8"
REDHAT_BUGZILLA_PRODUCT_VERSION=8.3
REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux"
REDHAT_SUPPORT_PRODUCT_VERSION="8.3"
PS = Is there a website I can go to to see the full list of packages available?
I have the same issue, but with
maven
docker image (it based on OracleLinux 8).Oracle Linux 8 & Postgresql13 Client
It was extremely unusual to install postgresql client on it, so, let's consider my steps:
https://www.postgresql.org/download/linux/redhat/
Select RHEL 8 and receive the rpm package link
Install it manually with
rpm
Determine that there is no
postgresql13
package. Click on the direct download link and select RHEL 8: https://download.postgresql.org/pub/repos/yum/13/redhat/rhel-8-x86_64/Download
postgresql13-13.x.x...
package (latest)Dependency list for that rpm:
Now you can clear the cache and test the client, e.g.
pg_dump
command.Result Dockerfile command:
RHEL 8 & Postgresql13 Client (your case)
Now let's consider your case, image
jboss/keycloak:14.0.0
based on RHEL 8.Caveat: If you receive error message
error: Failed to create: /var/cache/yum/metadata
, run as root user and than switch user back to jboss.All steps and Dockerfile commands are the same.
Please, let me know if there are any mistakes or something is not well-described.