1
0
mirror of https://github.com/bitwarden/server synced 2025-12-15 07:43:54 +00:00

feat(self-host): [PM-14188] Add option to disable built-in MSSQL container

* Add Config Option For Disabling Built In MSSQL Container

* fix: flip bool condition and make it nullable

* fake commit to kick off an ephemeral environment

* Revert "fake commit to kick off an ephemeral environment"

This reverts commit 818f65f4d2.

* Changed the new setting to not be nullable.

---------

Co-authored-by: Justin Baur <19896123+justindbaur@users.noreply.github.com>
Co-authored-by: Todd Martin <tmartin@bitwarden.com>
This commit is contained in:
tangowithfoxtrot
2025-07-11 08:23:51 -07:00
committed by GitHub
parent 067e464ec4
commit 24b7cc417f
3 changed files with 9 additions and 0 deletions

View File

@@ -97,6 +97,9 @@ public class Configuration
[Description("Enable SCIM")]
public bool EnableScim { get; set; } = false;
[Description("Enable Built-In MSSQL Container Generation")]
public bool EnableBuiltInMsSql { get; set; } = true;
[YamlIgnore]
public string Domain
{