Files
pgadmin/docker-compose.yaml

13 lines
402 B
YAML

services:
pgadmin:
container_name: pgadmin
image: dpage/pgadmin4:9.12.0
restart: unless-stopped
environment:
PGADMIN_DEFAULT_EMAIL: ${PGADMIN_DEFAULT_EMAIL:-admin@example.com}
PGADMIN_DEFAULT_PASSWORD: ${PGADMIN_DEFAULT_PASSWORD:-changeme}
volumes:
- ./data:/var/lib/pgadmin:delegated
ports:
- 9440:80