pgAdmin 4 image that can be configured through environment variables. For development purposes only.
10K+
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.
Content type
Image
Digest
sha256:c14f5e33a…
Size
143.3 MB
Last updated
over 3 years ago
docker pull newlogic42/pgadmin4