1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-18 12:49:43 +02:00

feat: Allow postgres connections that require ssl mode (#409)

Closes #261
This commit is contained in:
orbatschow 2023-03-06 13:54:52 +01:00 committed by GitHub
parent 2c66d53a08
commit 18e231fcaa
3 changed files with 30 additions and 1 deletions

View file

@ -23,6 +23,14 @@ services:
- TRUST_PROXY=0
- DATABASE_URL=postgresql://postgres@postgres/planka
- SECRET_KEY=notsecretkey
# related: https://github.com/knex/knex/issues/2354
# As knex does not pass query parameters from the connection string we
# have to use environment variables in order to pass the desired values, e.g.
# - PGSSLMODE=<value>
# Configure knex to accept SSL certificates
# - KNEX_REJECT_UNAUTHORIZED_SSL_CERTIFICATE=false
depends_on:
- postgres