1
0
mirror of https://github.com/bitwarden/server synced 2025-12-24 04:03:25 +00:00

Add alternative databases to development docker-compose (#1797)

This commit is contained in:
Oscar Hinton
2022-01-12 14:17:30 +01:00
committed by GitHub
parent e4a10aae27
commit f70fb5a74a
3 changed files with 43 additions and 0 deletions

View File

@@ -7,6 +7,12 @@
"sqlServer": {
"connectionString": "Server=localhost;Database=vault_dev;User Id=SA;Password=SET_A_PASSWORD_HERE_123;"
},
"postgreSql": {
"connectionString": "Host=localhost;Username=postgres;Password=SET_A_PASSWORD_HERE_123;Database=vault_dev;Include Error Detail=true",
},
"mySql": {
"connectionString": "server=localhost;uid=root;pwd=SET_A_PASSWORD_HERE_123;database=vault_dev"
},
"identityServer": {
"certificateThumbprint": "<your Identity certificate thumbprint with no spaces>"
},