1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-30 15:42:48 -05:00

Remove ComposeVersion from template (#3972)

This commit is contained in:
MtnBurrit0
2024-04-15 14:38:39 -06:00
committed by GitHub
parent 0512102189
commit 122d1b7ed7
3 changed files with 0 additions and 11 deletions

View File

@ -42,10 +42,6 @@ public class DockerComposeBuilder
{
public TemplateModel(Context context)
{
if (!string.IsNullOrWhiteSpace(context.Config.ComposeVersion))
{
ComposeVersion = context.Config.ComposeVersion;
}
MssqlDataDockerVolume = context.Config.DatabaseDockerVolume;
EnableKeyConnector = context.Config.EnableKeyConnector;
EnableScim = context.Config.EnableScim;
@ -65,7 +61,6 @@ public class DockerComposeBuilder
}
}
public string ComposeVersion { get; set; } = "3";
public bool MssqlDataDockerVolume { get; set; }
public bool EnableKeyConnector { get; set; }
public bool EnableScim { get; set; }