mcfongtw / dockercloud-pgadmin4

Docker image for pgadmin4 in alpine.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pgAdmin 4

What is pgAdmin?

pgAdmin is an open source administration and management tool for the PostgreSQL database.

It is Free Software released under the PostgreSQL License.

How to use this image

In order to run a container with our image, execute:

docker run --name some-pgadmin4 \
           --link some-postgres:postgres \
           -p 5050:5050 \
           -d fenglc/pgadmin4

Then you can hit http://localhost:5050 or http://host-ip:5050 in your browser.

Use default administrator account to log in:

Screenshot

dashboard

Environment Variables

  • DEFAULT_USER

default 'pgadmin4@pgadmin.org'

  • DEFAULT_PASSWORD

default 'admin'

  • MAIL_SERVER

default 'localhost'

  • MAIL_PORT

default 25

  • MAIL_USE_SSL

default False

  • MAIL_USE_TLS

default False

  • MAIL_USERNAME

default None

  • MAIL_PASSWORD

default None

Open source

Building from source

If you want to build and run your own version locally:

  • Clone this repository.
  • Build your own version of the Docker image.

License

Refer to the LICENSE file (MIT License).

About

Docker image for pgadmin4 in alpine.

License:MIT License


Languages

Language:Shell 100.0%