init
This commit is contained in:
3
pgadmin4/.env
Normal file
3
pgadmin4/.env
Normal 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
19
pgadmin4/compose.yml
Normal 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
13
pgadmin4/server.json
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"Servers": {
|
||||
"1": {
|
||||
"Name": "Bot",
|
||||
"Group": "Local",
|
||||
"Port": 5432,
|
||||
"Username": "garde-studios",
|
||||
"Host": "localhost",
|
||||
"SSLMode": "prefer",
|
||||
"MaintenanceDB": "postgres"
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user