This commit is contained in:
2024-07-24 14:46:46 +02:00
parent ce267219fa
commit 47d44643c3
16 changed files with 353 additions and 0 deletions

3
pgadmin4/.env Normal file
View File

@@ -0,0 +1,3 @@
PGADMIN_DEFAULT_EMAIL=p.keier@beyerstedt-it.de
PGADMIN_DEFAULT_PASSWORD=1P2h3i4lon
PGADMIN_DISABLE_POSTFIX=true

19
pgadmin4/compose.yml Normal file
View File

@@ -0,0 +1,19 @@
services:
pgadmin:
image: dpage/pgadmin4
container_name: pg4
restart: always
env_file: ./.env
ports:
- "8888:80"
volumes:
- ./server.json:/var/lib/pgadmin/server.json
- pg4_data:/var/lib/pgadmin
volumes:
pg4_data:
driver: local
driver_opts:
type: none
device: ./data
o: bind

13
pgadmin4/server.json Normal file
View File

@@ -0,0 +1,13 @@
{
"Servers": {
"1": {
"Name": "Bot",
"Group": "Local",
"Port": 5432,
"Username": "garde-studios",
"Host": "localhost",
"SSLMode": "prefer",
"MaintenanceDB": "postgres"
}
}
}