PHPPgAdmin image with autologin system.
500K+
Image based on the latest php:alpine official image.
(Based on: http://phppgadmin.sourceforge.net/doku.php?id=start.)
(NB: The description on the official website only speak about the phpPgAdmin 5.6, but the image is based on Github versions.)
phpPgAdmin is a web-based administration tool for PostgreSQL . It is perfect for PostgreSQL DBAs, newbies, and hosting services.
Features
docker commanddocker run --name phppgadmin -e POSTGRES_HOST=postgres_conainer_name -e POSTGRES_PORT=5432 -e POSTGRES_USER=postgres_username -e POSTGRES_PASS=postgres_password -p "10080:80"
docker-compose commanddocker-compose.yml:
services:
postgres:
image: postgres
environment:
POSTGRES_PASSWORD: postgres
phppgadmin:
image: neimheadh/phppgadmin
environment:
POSTGRES_HOST: postgres
POSTGRES_PORT: 5432
POSTGRES_USER: postgres
POSTGRES_PASS: postgres
ports:
- "10080:80"
Then docker-compose command:
docker-compose up -d
The exposed port is 80.
Here the environment variables:
| Variable | Description | Default value |
|---|---|---|
| POSTGRES_HOST | Postgres host (container or other). | postgres |
| POSTGRES_PORT | Postgres host port. | 5432 |
| POSTGRES_USER | Postgres connexion username. | postgres |
| POSTGRES_PASS | Postgres connexion password. | None |
Content type
Image
Digest
Size
35 MB
Last updated
about 5 years ago
docker pull neimheadh/phppgadmin