You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
content: |# This will tell Coolify to create the file (this is not available in a normal docker-compose)
254
254
-- NOTE: change to your own passwords for production environments
255
255
\set pgpass `echo "$POSTGRES_PASSWORD"`
256
256
257
257
ALTER USER authenticator WITH PASSWORD :'pgpass';
258
258
ALTER USER pgbouncer WITH PASSWORD :'pgpass';
259
259
```
260
260
261
+
Alternatively config files can be created using the [configs](https://docs.docker.com/reference/compose-file/configs/) top level element in Docker Compose.
-- NOTE: change to your own passwords for production environments
277
+
\set pgpass `echo "$POSTGRES_PASSWORD"`
278
+
279
+
ALTER USER authenticator WITH PASSWORD :'pgpass';
280
+
ALTER USER pgbouncer WITH PASSWORD :'pgpass';
281
+
```
282
+
261
283
## Exclude from healthchecks
262
284
263
285
If you have a service that you do not want to be part of your overall healthchecks, you can exclude it from the healthchecks by setting the `exclude_from_hc` option to `true`.
0 commit comments