Files
postgresql-port/compose.yaml.hbs

18 lines
512 B
Handlebars
Raw Normal View History

2025-04-23 19:30:57 +00:00
services:
{{app_id}}-postgresql:
2025-11-24 18:51:07 +00:00
image: postgres:18.1
2025-04-23 19:30:57 +00:00
restart: always
environment:
POSTGRES_USER: {{entitlements.db-user}}
POSTGRES_PASSWORD: {{entitlements.db-password}}
POSTGRES_DB: {{entitlements.db-name}}
volumes:
2025-11-24 18:51:07 +00:00
- {{entitlements.folder-path}}:/var/lib/postgresql
2025-04-23 19:30:57 +00:00
ports:
- {{entitlements.port-number}}:5432
{{#unless (eq entitlements.os "windows")}}
user: {{entitlements.uid}}:{{entitlements.gid}}
{{/unless}}
logging:
driver: local