cdn-ops/global/overlay/etc/puppet/modules/cdn/templates/db/docker-compose.yml.erb

14 lines
381 B
Plaintext
Raw Normal View History

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
- /opt/sunet-cdn/db/conf:/conf
2024-11-13 12:52:26 +00:00
volumes:
postgres_data: