docker oneliners
Home
Docker cheatsheet
About
View github
Running and configuring
pgadmin
in docker
pgadmin reference
Feature rich Open Source administration and development platform for PostgreSQL with web interface
Accepted parameters
Container name
Exposed port
Login
Password
Available commands
create & run
Run once to create a container and start it
docker run --name pgadmintemp -p 8080:80 -e
[email protected]
-e PGADMIN_DEFAULT_PASSWORD=admin1234 -d dpage/pgadmin4
start
docker start pgadmintemp
stop
docker stop pgadmintemp
remove
docker rm pgadmintemp