We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c93c238 commit e3c3962Copy full SHA for e3c3962
templates/compose/documenso.yaml
@@ -139,12 +139,13 @@ services:
139
database:
140
image: postgres:17
141
environment:
142
- - POSTGRES_USER=${POSTGRES_USER:-documenso}
143
- - POSTGRES_PASSWORD=${POSTGRES_PASSWORD:-PLACEHOLDER_PASSWORD}
+ - POSTGRES_USER=${SERVICE_USER_POSTGRES}
+ - POSTGRES_PASSWORD=${SERVICE_PASSWORD_POSTGRES}
144
- POSTGRES_DB=${POSTGRES_DB:-documenso-db}
145
volumes:
146
- documenso_postgresql_data:/var/lib/postgresql/data
147
healthcheck:
148
test: ["CMD-SHELL", "pg_isready -U $${POSTGRES_USER} -d $${POSTGRES_DB}"]
149
+ interval: 5s
150
timeout: 20s
151
retries: 10
0 commit comments