Complement: use SQLite by default (#13075)

If no database is configured explicitly, use sqlite.

This means that you don't have to pass any variables into the image.
This commit is contained in:
Richard van der Hoff 2022-06-16 12:12:26 +01:00 committed by GitHub
parent 0ef1307619
commit 1e0044e8f9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 2 deletions

View file

@ -31,7 +31,7 @@ case "$SYNAPSE_COMPLEMENT_DATABASE" in
export START_POSTGRES=true
;;
sqlite)
sqlite|"")
# Configure supervisord not to start Postgres, as we don't need it
export START_POSTGRES=false
;;