cdn-ops/global/overlay/etc/puppet/modules/cdn/templates/db/docker-compose.yml.erb
2024-11-13 14:59:59 +01:00

12 lines
350 B
Plaintext

services:
db:
image: "postgres:<%= @postgres_version %>"
environment:
- POSTGRES_PASSWORD=<%= @db_secrets['postgres_password'] %>
volumes:
- postgres_data:/var/lib/postgresql/data
- /opt/sunet-cdn/db/docker-entrypoint-initdb.d:/docker-entrypoint-initdb.d
- /opt/sunet-cdn/db/conf:/conf
volumes:
postgres_data: