Compare commits

..
10 Commits
2 changed files with 18 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
/data
.env
+16
View File
@@ -0,0 +1,16 @@
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}
SCRIPT_NAME: ${SCRIPT_NAME:-}
volumes:
- pgadmin_data:/var/lib/pgadmin:delegated
ports:
- 9440:80
volumes:
pgadmin_data: