2024-11-13 12:27:58 +00:00
|
|
|
services:
|
|
|
|
db:
|
|
|
|
image: "postgres:<%= @postgres_version %>"
|
|
|
|
environment:
|
2024-11-13 12:39:42 +00:00
|
|
|
- POSTGRES_PASSWORD=<%= @db_secrets['postgres_password'] %>
|
2024-11-14 11:12:50 +00:00
|
|
|
ports:
|
2024-11-14 11:14:18 +00:00
|
|
|
- "5432:5432"
|
2024-11-13 12:52:26 +00:00
|
|
|
volumes:
|
|
|
|
- postgres_data:/var/lib/postgresql/data
|
2024-11-13 13:59:59 +00:00
|
|
|
- /opt/sunet-cdn/db/docker-entrypoint-initdb.d:/docker-entrypoint-initdb.d
|
2024-11-13 13:52:17 +00:00
|
|
|
- /opt/sunet-cdn/db/conf:/conf
|
2024-11-13 12:52:26 +00:00
|
|
|
volumes:
|
|
|
|
postgres_data:
|