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-13 12:52:26 +00:00
|
|
|
volumes:
|
|
|
|
- postgres_data:/var/lib/postgresql/data
|
2024-11-13 13:52:17 +00:00
|
|
|
- /opt/sunet-cdn/db/docker-entrypoint-initdb.d:/docker-entrypoint-initdb.dh
|
|
|
|
- /opt/sunet-cdn/db/conf:/conf
|
2024-11-13 12:52:26 +00:00
|
|
|
volumes:
|
|
|
|
postgres_data:
|