dogukancagatay / docker-pwless-pgadmin4

Passwordless pgadmin4
MIT License
15 stars 3 forks source link

Passwordless pgAdmin4 Container Image (dcagatay/pwless-pgadmin4)

pgAdmin4 container image with password-less usage configuration.

Sample docker-compose.yml:

  pgadmin4:
    image: dcagatay/pwless-pgadmin4:latest
    ports:
      - 15432:80
    environment:
      POSTGRES_USER: my_user
      POSTGRES_PASSWORD: my_pass
      POSTGRES_HOST: "postgres"
      POSTGRES_PORT: "5432"
      # POSTGRES_DB: "*"

A quick example could be found in docker-compose.yml.

Environment variables

Multi Server Config

You can configure multiple hosts by adding enumerated environment variables, where X is the index of the host (starting from 1):

A multi database example usage could be found in docker-compose-multi.yml.

Links