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

10 lines
232 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-13 12:52:26 +00:00
volumes:
- postgres_data:/var/lib/postgresql/data
volumes:
postgres_data: