Sign inSign up

newlogic42/pgadmin4

By newlogic42

Updated over 3 years ago

pgAdmin 4 image that can be configured through environment variables. For development purposes only.

Image
0

10K+

newlogic42/pgadmin4 repository overview

pgAdmin 4

Docker image that can be configured through environment variables. For development purposes only.

Sample usage with docker-compose
version: "3.9"
services:
  db:
    image: postgres
    restart: always
    environment:
      POSTGRES_USER: example
      POSTGRES_PASSWORD: example

  pgadmin:
    build: .
    restart: always
    environment:
      POSTGRES_HOST: db
      POSTGRES_USER: example
      POSTGRES_PASSWORD: example
    ports:
      - 8081:80

Then simply navigate to http://localhost:8081. No login required, ne setup required, your db is availaible and ready to be used.

Tag summary

Content type

Image

Digest

sha256:c14f5e33a

Size

143.3 MB

Last updated

over 3 years ago

docker pull newlogic42/pgadmin4