-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
46 lines (43 loc) · 1.12 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
x-common-timezone: &services-timezone Etc/UTC
name: local_postgresql
services:
postgres-server:
container_name: postgresql
hostname: postgresql
image: postgres:16-alpine
volumes:
- ./postgresql_data:/var/lib/postgresql/data
environment:
TZ: *services-timezone
PGTZ: *services-timezone
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
POSTGRES_DB: postgres
networks:
- local_postgresql_net
ports:
- 5432:5432
restart: unless-stopped
pgadmin:
container_name: pgadmin4
hostname: pgadmin4
image: dpage/pgadmin4:8
environment:
TZ: *services-timezone
PGADMIN_DEFAULT_EMAIL: [email protected]
PGADMIN_DEFAULT_PASSWORD: admin
PGADMIN_CONFIG_UPGRADE_CHECK_ENABLED: "False"
PGADMIN_CONFIG_SERVER_MODE: "False"
PGADMIN_CONFIG_MASTER_PASSWORD_REQUIRED: "False"
networks:
- local_postgresql_net
volumes:
- ./pgadmin4_data:/var/lib/pgadmin
ports:
- 5433:80
restart: unless-stopped
depends_on:
- postgres-server
networks:
local_postgresql_net:
name: local_postgresql