Install pgAdmin (docker)

Table of contents

Install PGADMIN

The easiest way to install and use pgAdmin for development is via docker. It is available to docker hub so installation is very fast and easy

docker pull dpage/pgadmin4

Execute

You can use any credentials you want:

docker run -p 80:80 \
    -e '[email protected]' \
    -e 'PGADMIN_DEFAULT_PASSWORD=SuperSecret' \
    -d dpage/pgadmin4