mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
- Introduced pgAdmin entry in meta.json with relevant details and links. - Added Docker Compose configuration for pgAdmin service. - Included pgAdmin logo and template.toml for configuration settings.
22 lines
470 B
YAML
22 lines
470 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
pgadmin:
|
|
image: dpage/pgadmin4:latest
|
|
restart: unless-stopped
|
|
environment:
|
|
- PGADMIN_DEFAULT_EMAIL=${PGADMIN_DEFAULT_EMAIL}
|
|
- PGADMIN_DEFAULT_PASSWORD=${PGADMIN_DEFAULT_PASSWORD}
|
|
- PGADMIN_CONFIG_SERVER_MODE=False
|
|
- PGADMIN_CONFIG_MASTER_PASSWORD_REQUIRED=False
|
|
volumes:
|
|
- pgadmin-data:/var/lib/pgadmin
|
|
networks:
|
|
- proxy
|
|
|
|
volumes:
|
|
pgadmin-data:
|
|
|
|
networks:
|
|
proxy:
|
|
external: true |