-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcompose.postgresql.yaml
44 lines (41 loc) · 1.09 KB
/
compose.postgresql.yaml
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
volumes:
postgres17_pgdata:
driver: local
driver_opts:
o: bind
type: none
device: ./data/postgresql17-data
postgres17_dockerinit:
driver: local
driver_opts:
o: bind
type: none
device: ./configs/postgresql/17/docker-entrypoint-initdb.d
secrets:
pg17-username:
file: ./configs/postgresql/17/.env.pg17-username
pg17-password:
file: ./configs/postgresql/17/.env.pg17-password
pg17-database:
file: ./configs/postgresql/17/.env.pg17-database
services:
# https://hub.docker.com/_/postgres
postgres17:
container_name: postgres17
image: postgres:17.2-alpine3.21
networks:
- monitoring
restart: unless-stopped
environment:
POSTGRES_DB_FILE: /run/secrets/pg17-database
POSTGRES_USER_FILE: /run/secrets/pg17-username
POSTGRES_PASSWORD_FILE: /run/secrets/pg17-password
expose:
- "54321:5432"
volumes:
- postgres17_pgdata:/var/lib/postgresql/data
- postgres17_dockerinit:/docker-entrypoint-initdb.d
secrets:
- pg17-username
- pg17-password
- pg17-database