Skip to content

dhpagani/pgadmin4-docker

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pgAdmin 4

This is a simple Docker image for running pgAdmin 4 in a container. It is not intended for production use (it runs in "desktop mode", so authentication is disabled).

Example use

# create a custom network for easier connecting
$ docker network create pg

# start a postgres container
$ docker run -d -e POSTGRES_PASSWORD=password --net pg --name postgres postgres

# start pgAdmin container
$ docker run -d -p 8080:80 --name pgadmin --net pg thajeztah/pgadmin4

Now visit http://[your-docker-host]:8080 in your browser. You can add the postgres container (password is password).

To-dos

  • Optimize configuration
  • Allow overriding configuration through environment variables
  • Improve location of configuration and storage

More information on pgAdmin 4 development can be found here;

About

Automated build for pgAdmin4 Docker image

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%