Index: src/Clients/Angular/finki-chattery/src/app/app-routing.module.ts
===================================================================
--- src/Clients/Angular/finki-chattery/src/app/app-routing.module.ts	(revision 6a65994bae2d6c33f66c1d92e30e6dd1eb38b254)
+++ src/Clients/Angular/finki-chattery/src/app/app-routing.module.ts	(revision eb21f00224c325159cf7cf78fe77aa63bf5fae0c)
@@ -1,4 +1,3 @@
 import { NgModule } from '@angular/core';
-import { CommonModule } from '@angular/common';
 import { Routes, RouterModule } from '@angular/router';
 import { AuthorizedGuard } from './core/guards/authorized.guard';
@@ -17,8 +16,5 @@
 
 @NgModule({
-  imports: [
-    CommonModule,
-    RouterModule.forRoot(routes)
-  ],
+  imports: [RouterModule.forRoot(routes)],
   exports: [RouterModule]
 })
Index: src/Clients/Angular/finki-chattery/src/app/app.component.html
===================================================================
--- src/Clients/Angular/finki-chattery/src/app/app.component.html	(revision 6a65994bae2d6c33f66c1d92e30e6dd1eb38b254)
+++ src/Clients/Angular/finki-chattery/src/app/app.component.html	(revision eb21f00224c325159cf7cf78fe77aa63bf5fae0c)
@@ -1,17 +1,3 @@
-
-  <mat-sidenav-container>
-    <mat-sidenav #sidenav role="navigation">
-      <!--this is a place for us to add side-nav code-->
-    </mat-sidenav>
-    <mat-sidenav-content>
-      <!--in here all the content must reside. We will add a navigation header as well-->
-      <app-header></app-header>
-      <main>
-        <router-outlet></router-outlet>
-      </main>
-    </mat-sidenav-content>
-  </mat-sidenav-container>
-
-
+<main>
   <mat-progress-bar class="global-loader" [class.hidden]="!(loader.isLoading | async)" mode="indeterminate"></mat-progress-bar>
   <router-outlet></router-outlet>
Index: src/Clients/Angular/finki-chattery/src/app/app.module.ts
===================================================================
--- src/Clients/Angular/finki-chattery/src/app/app.module.ts	(revision 6a65994bae2d6c33f66c1d92e30e6dd1eb38b254)
+++ src/Clients/Angular/finki-chattery/src/app/app.module.ts	(revision eb21f00224c325159cf7cf78fe77aa63bf5fae0c)
@@ -11,8 +11,7 @@
 import { translateConfiguration, TranslateFromJsonService } from './shared-app/services';
 import { SharedMaterialModule } from './shared-material/shared-material.module';
-import { HeaderComponent } from './navigation/header/header.component';
 
 @NgModule({
-  declarations: [AppComponent, HeaderComponent],
+  declarations: [AppComponent],
   imports: [
     BrowserModule,
Index: src/Clients/Angular/finki-chattery/src/styles.scss
===================================================================
--- src/Clients/Angular/finki-chattery/src/styles.scss	(revision 6a65994bae2d6c33f66c1d92e30e6dd1eb38b254)
+++ src/Clients/Angular/finki-chattery/src/styles.scss	(revision eb21f00224c325159cf7cf78fe77aa63bf5fae0c)
@@ -1,9 +1,8 @@
 html,
 body {
+  height: 100%;
+}
+body {
   margin: 0;
-  height: 100%;
-}
-/*
-body {
   font-family: Roboto, sans-serif;
 }
@@ -286,3 +285,2 @@
   z-index: 1100 !important;
 }
-*/
Index: src/FinkiChattery/FinkiChattery.Api/FinkiChattery.Api.csproj
===================================================================
--- src/FinkiChattery/FinkiChattery.Api/FinkiChattery.Api.csproj	(revision 6a65994bae2d6c33f66c1d92e30e6dd1eb38b254)
+++ src/FinkiChattery/FinkiChattery.Api/FinkiChattery.Api.csproj	(revision eb21f00224c325159cf7cf78fe77aa63bf5fae0c)
@@ -3,4 +3,5 @@
   <PropertyGroup>
     <TargetFramework>netcoreapp3.1</TargetFramework>
+    <Configurations>Debug;Release;Debug_Docker</Configurations>
   </PropertyGroup>
 
Index: src/FinkiChattery/FinkiChattery.Api/Services/RegisterServices.cs
===================================================================
--- src/FinkiChattery/FinkiChattery.Api/Services/RegisterServices.cs	(revision 6a65994bae2d6c33f66c1d92e30e6dd1eb38b254)
+++ src/FinkiChattery/FinkiChattery.Api/Services/RegisterServices.cs	(revision eb21f00224c325159cf7cf78fe77aa63bf5fae0c)
@@ -36,7 +36,13 @@
         public static void AddHangfireService(this IServiceCollection services, IConfiguration configuration)
         {
+            string connectionString = "HangfireConnection";
+
+#if DEBUG_DOCKER
+            connectionString = "HangfireConnectionDocker";
+#endif
+
             services.AddHangfire(x =>
             {
-                x.UseSqlServerStorage(configuration.GetConnectionString("HangfireConnection"), new SqlServerStorageOptions
+                x.UseSqlServerStorage(configuration.GetConnectionString(connectionString), new SqlServerStorageOptions
                 {
                     CommandBatchMaxTimeout = TimeSpan.FromMinutes(5),
Index: src/FinkiChattery/FinkiChattery.Api/Startup.cs
===================================================================
--- src/FinkiChattery/FinkiChattery.Api/Startup.cs	(revision 6a65994bae2d6c33f66c1d92e30e6dd1eb38b254)
+++ src/FinkiChattery/FinkiChattery.Api/Startup.cs	(revision eb21f00224c325159cf7cf78fe77aa63bf5fae0c)
@@ -39,6 +39,12 @@
             services.AddHangfireService(Configuration);
 
+            string connectionString = "DefaultConnection";
+
+#if DEBUG_DOCKER
+            connectionString = "DefaultConnectionDocker";
+#endif
+
             services.AddDbContext<ApplicationDbContext>(options =>
-                options.UseSqlServer(Configuration.GetConnectionString("DefaultConnection")));
+                options.UseSqlServer(Configuration.GetConnectionString(connectionString)));
 
             services.AddControllers()
Index: src/FinkiChattery/FinkiChattery.Api/appsettings.Development.json
===================================================================
--- src/FinkiChattery/FinkiChattery.Api/appsettings.Development.json	(revision 6a65994bae2d6c33f66c1d92e30e6dd1eb38b254)
+++ src/FinkiChattery/FinkiChattery.Api/appsettings.Development.json	(revision eb21f00224c325159cf7cf78fe77aa63bf5fae0c)
@@ -25,12 +25,12 @@
     },
     "corsSettings": {
-      "allowedCorsOrigins": [
-        "http://localhost:4200"
-      ]
+      "allowedCorsOrigins": ["http://localhost:4200"]
     }
   },
   "ConnectionStrings": {
-    "DefaultConnection": "Data Source=localhost;Initial Catalog=FinkiChattery;User ID=sa;Password=Asfa+032;Connect Timeout=60;Encrypt=False;TrustServerCertificate=True;ApplicationIntent=ReadWrite;MultiSubnetFailover=False;Pooling=true;Min Pool Size=5;Max Pool Size=30;",
-    "HangfireConnection": "Data Source=localhost;Initial Catalog=FinkiChatteryHangfire;User ID=sa;Password=Asfa+032;Connect Timeout=60;Encrypt=False;TrustServerCertificate=True;ApplicationIntent=ReadWrite;MultiSubnetFailover=False;Pooling=true;Min Pool Size=5;Max Pool Size=30;"
+    "DefaultConnection": "data source=.;initial catalog=FinkiChattery;integrated security=True;application name=FinkiChattery Base App;Pooling=true;Min Pool Size=5;Max Pool Size=30;",
+    "HangfireConnection": "data source=.;initial catalog=FinkiChatteryHangfire;integrated security=True;application name=FinkiChattery Hangfire App;Pooling=true;Min Pool Size=5;Max Pool Size=30;",
+    "DefaultConnectionDocker": "Data Source=localhost;Initial Catalog=FinkiChattery;User ID=sa;Password=Asfa+032;Connect Timeout=60;Encrypt=False;TrustServerCertificate=True;ApplicationIntent=ReadWrite;MultiSubnetFailover=False;Pooling=true;Min Pool Size=5;Max Pool Size=30;",
+    "HangfireConnectionDocker": "Data Source=localhost;Initial Catalog=FinkiChatteryHangfire;User ID=sa;Password=Asfa+032;Connect Timeout=60;Encrypt=False;TrustServerCertificate=True;ApplicationIntent=ReadWrite;MultiSubnetFailover=False;Pooling=true;Min Pool Size=5;Max Pool Size=30;"
   }
 }
Index: src/FinkiChattery/FinkiChattery.Commands/FinkiChattery.Commands.csproj
===================================================================
--- src/FinkiChattery/FinkiChattery.Commands/FinkiChattery.Commands.csproj	(revision 6a65994bae2d6c33f66c1d92e30e6dd1eb38b254)
+++ src/FinkiChattery/FinkiChattery.Commands/FinkiChattery.Commands.csproj	(revision eb21f00224c325159cf7cf78fe77aa63bf5fae0c)
@@ -3,4 +3,5 @@
   <PropertyGroup>
     <TargetFramework>netcoreapp3.1</TargetFramework>
+    <Configurations>Debug;Release;Debug_Docker</Configurations>
   </PropertyGroup>
 
Index: src/FinkiChattery/FinkiChattery.Common/FinkiChattery.Common.csproj
===================================================================
--- src/FinkiChattery/FinkiChattery.Common/FinkiChattery.Common.csproj	(revision 6a65994bae2d6c33f66c1d92e30e6dd1eb38b254)
+++ src/FinkiChattery/FinkiChattery.Common/FinkiChattery.Common.csproj	(revision eb21f00224c325159cf7cf78fe77aa63bf5fae0c)
@@ -3,4 +3,5 @@
   <PropertyGroup>
     <TargetFramework>netcoreapp3.1</TargetFramework>
+    <Configurations>Debug;Release;Debug_Docker</Configurations>
   </PropertyGroup>
 
Index: src/FinkiChattery/FinkiChattery.Contracts/FinkiChattery.Contracts.csproj
===================================================================
--- src/FinkiChattery/FinkiChattery.Contracts/FinkiChattery.Contracts.csproj	(revision 6a65994bae2d6c33f66c1d92e30e6dd1eb38b254)
+++ src/FinkiChattery/FinkiChattery.Contracts/FinkiChattery.Contracts.csproj	(revision eb21f00224c325159cf7cf78fe77aa63bf5fae0c)
@@ -3,4 +3,5 @@
   <PropertyGroup>
     <TargetFramework>netcoreapp3.1</TargetFramework>
+    <Configurations>Debug;Release;Debug_Docker</Configurations>
   </PropertyGroup>
 
Index: src/FinkiChattery/FinkiChattery.Identity/FinkiChattery.Identity.csproj
===================================================================
--- src/FinkiChattery/FinkiChattery.Identity/FinkiChattery.Identity.csproj	(revision 6a65994bae2d6c33f66c1d92e30e6dd1eb38b254)
+++ src/FinkiChattery/FinkiChattery.Identity/FinkiChattery.Identity.csproj	(revision eb21f00224c325159cf7cf78fe77aa63bf5fae0c)
@@ -3,4 +3,5 @@
   <PropertyGroup>
     <TargetFramework>netcoreapp3.1</TargetFramework>
+    <Configurations>Debug;Release;Debug_Docker</Configurations>
   </PropertyGroup>
 
Index: src/FinkiChattery/FinkiChattery.Identity/Startup.cs
===================================================================
--- src/FinkiChattery/FinkiChattery.Identity/Startup.cs	(revision 6a65994bae2d6c33f66c1d92e30e6dd1eb38b254)
+++ src/FinkiChattery/FinkiChattery.Identity/Startup.cs	(revision eb21f00224c325159cf7cf78fe77aa63bf5fae0c)
@@ -28,6 +28,13 @@
             services.AddControllersWithViews();
 
+
+            string connectionString = "DefaultConnection";
+
+#if DEBUG_DOCKER
+            connectionString = "DefaultConnectionDocker";
+#endif
+
             services.AddDbContextPool<ApplicationDbContext<ApplicationUser>>(options =>
-                options.UseSqlServer(Configuration.GetConnectionString("DefaultConnection")));
+                options.UseSqlServer(Configuration.GetConnectionString(connectionString)));
 
             services.AddIdentityServerAndIdentityProvider(AppSettings);
Index: src/FinkiChattery/FinkiChattery.Identity/appsettings.Development.json
===================================================================
--- src/FinkiChattery/FinkiChattery.Identity/appsettings.Development.json	(revision 6a65994bae2d6c33f66c1d92e30e6dd1eb38b254)
+++ src/FinkiChattery/FinkiChattery.Identity/appsettings.Development.json	(revision eb21f00224c325159cf7cf78fe77aa63bf5fae0c)
@@ -17,5 +17,6 @@
 	},
 	"ConnectionStrings": {
-		"DefaultConnection": "Data Source=localhost;Initial Catalog=FinkiChattery;User ID=sa;Password=Asfa+032;Connect Timeout=60;Encrypt=False;TrustServerCertificate=True;ApplicationIntent=ReadWrite;MultiSubnetFailover=False;Pooling=true;Min Pool Size=5;Max Pool Size=30;"
+		"DefaultConnection": "data source=.;initial catalog=FinkiChattery;integrated security=True;application name=FinkiChattery Base App;Pooling=true;Min Pool Size=5;Max Pool Size=30;",
+		"DefaultConnectionDocker": "Data Source=localhost;Initial Catalog=FinkiChattery;User ID=sa;Password=Asfa+032;Connect Timeout=60;Encrypt=False;TrustServerCertificate=True;ApplicationIntent=ReadWrite;MultiSubnetFailover=False;Pooling=true;Min Pool Size=5;Max Pool Size=30;"
 	}
 }
Index: src/FinkiChattery/FinkiChattery.Persistence/FinkiChattery.Persistence.csproj
===================================================================
--- src/FinkiChattery/FinkiChattery.Persistence/FinkiChattery.Persistence.csproj	(revision 6a65994bae2d6c33f66c1d92e30e6dd1eb38b254)
+++ src/FinkiChattery/FinkiChattery.Persistence/FinkiChattery.Persistence.csproj	(revision eb21f00224c325159cf7cf78fe77aa63bf5fae0c)
@@ -3,4 +3,5 @@
   <PropertyGroup>
     <TargetFramework>netcoreapp3.1</TargetFramework>
+    <Configurations>Debug;Release;Debug_Docker</Configurations>
   </PropertyGroup>
 
Index: src/FinkiChattery/FinkiChattery.Queries/FinkiChattery.Queries.csproj
===================================================================
--- src/FinkiChattery/FinkiChattery.Queries/FinkiChattery.Queries.csproj	(revision 6a65994bae2d6c33f66c1d92e30e6dd1eb38b254)
+++ src/FinkiChattery/FinkiChattery.Queries/FinkiChattery.Queries.csproj	(revision eb21f00224c325159cf7cf78fe77aa63bf5fae0c)
@@ -3,4 +3,5 @@
   <PropertyGroup>
     <TargetFramework>netcoreapp3.1</TargetFramework>
+    <Configurations>Debug;Release;Debug_Docker</Configurations>
   </PropertyGroup>
 
Index: src/FinkiChattery/FinkiChattery.sln
===================================================================
--- src/FinkiChattery/FinkiChattery.sln	(revision 6a65994bae2d6c33f66c1d92e30e6dd1eb38b254)
+++ src/FinkiChattery/FinkiChattery.sln	(revision eb21f00224c325159cf7cf78fe77aa63bf5fae0c)
@@ -22,34 +22,48 @@
 Project("{00D1A9C2-B5F0-4AF3-8072-F6C62B433612}") = "FinkiChattery.HangfireDatabase", "FinkiChattery.HangfireDatabase\FinkiChattery.HangfireDatabase.sqlproj", "{C4CB8596-3F3A-4B4E-BEC5-0720FF7CD532}"
 EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FinkiChattery.Commands", "FinkiChattery.Commands\FinkiChattery.Commands.csproj", "{7AD9C86F-46FF-442A-B134-3CE2E82CE0D0}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FinkiChattery.Commands", "FinkiChattery.Commands\FinkiChattery.Commands.csproj", "{7AD9C86F-46FF-442A-B134-3CE2E82CE0D0}"
 EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FinkiChattery.Queries", "FinkiChattery.Queries\FinkiChattery.Queries.csproj", "{D19820A3-E6E6-4B1C-927A-C8B8B4B16D25}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FinkiChattery.Queries", "FinkiChattery.Queries\FinkiChattery.Queries.csproj", "{D19820A3-E6E6-4B1C-927A-C8B8B4B16D25}"
 EndProject
 Global
 	GlobalSection(SolutionConfigurationPlatforms) = preSolution
+		Debug_Docker|Any CPU = Debug_Docker|Any CPU
 		Debug|Any CPU = Debug|Any CPU
 		Release|Any CPU = Release|Any CPU
 	EndGlobalSection
 	GlobalSection(ProjectConfigurationPlatforms) = postSolution
+		{8CD7796E-5DC1-413D-8D04-3C95E89BB214}.Debug_Docker|Any CPU.ActiveCfg = Debug_Docker|Any CPU
+		{8CD7796E-5DC1-413D-8D04-3C95E89BB214}.Debug_Docker|Any CPU.Build.0 = Debug_Docker|Any CPU
 		{8CD7796E-5DC1-413D-8D04-3C95E89BB214}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
 		{8CD7796E-5DC1-413D-8D04-3C95E89BB214}.Debug|Any CPU.Build.0 = Debug|Any CPU
 		{8CD7796E-5DC1-413D-8D04-3C95E89BB214}.Release|Any CPU.ActiveCfg = Release|Any CPU
 		{8CD7796E-5DC1-413D-8D04-3C95E89BB214}.Release|Any CPU.Build.0 = Release|Any CPU
+		{D2EADD50-983E-48EE-8B36-7CF088DCF8AE}.Debug_Docker|Any CPU.ActiveCfg = Debug_Docker|Any CPU
+		{D2EADD50-983E-48EE-8B36-7CF088DCF8AE}.Debug_Docker|Any CPU.Build.0 = Debug_Docker|Any CPU
 		{D2EADD50-983E-48EE-8B36-7CF088DCF8AE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
 		{D2EADD50-983E-48EE-8B36-7CF088DCF8AE}.Debug|Any CPU.Build.0 = Debug|Any CPU
 		{D2EADD50-983E-48EE-8B36-7CF088DCF8AE}.Release|Any CPU.ActiveCfg = Release|Any CPU
 		{D2EADD50-983E-48EE-8B36-7CF088DCF8AE}.Release|Any CPU.Build.0 = Release|Any CPU
+		{1BA385FA-32FC-4237-85D2-705EEBCAFD06}.Debug_Docker|Any CPU.ActiveCfg = Debug_Docker|Any CPU
+		{1BA385FA-32FC-4237-85D2-705EEBCAFD06}.Debug_Docker|Any CPU.Build.0 = Debug_Docker|Any CPU
 		{1BA385FA-32FC-4237-85D2-705EEBCAFD06}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
 		{1BA385FA-32FC-4237-85D2-705EEBCAFD06}.Debug|Any CPU.Build.0 = Debug|Any CPU
 		{1BA385FA-32FC-4237-85D2-705EEBCAFD06}.Release|Any CPU.ActiveCfg = Release|Any CPU
 		{1BA385FA-32FC-4237-85D2-705EEBCAFD06}.Release|Any CPU.Build.0 = Release|Any CPU
+		{4D2F08BF-44F0-427D-B5B8-079233500FA8}.Debug_Docker|Any CPU.ActiveCfg = Debug_Docker|Any CPU
+		{4D2F08BF-44F0-427D-B5B8-079233500FA8}.Debug_Docker|Any CPU.Build.0 = Debug_Docker|Any CPU
 		{4D2F08BF-44F0-427D-B5B8-079233500FA8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
 		{4D2F08BF-44F0-427D-B5B8-079233500FA8}.Debug|Any CPU.Build.0 = Debug|Any CPU
 		{4D2F08BF-44F0-427D-B5B8-079233500FA8}.Release|Any CPU.ActiveCfg = Release|Any CPU
 		{4D2F08BF-44F0-427D-B5B8-079233500FA8}.Release|Any CPU.Build.0 = Release|Any CPU
+		{E69CDEE7-B2F5-42F4-81F0-11DCDC1C8CC9}.Debug_Docker|Any CPU.ActiveCfg = Debug_Docker|Any CPU
+		{E69CDEE7-B2F5-42F4-81F0-11DCDC1C8CC9}.Debug_Docker|Any CPU.Build.0 = Debug_Docker|Any CPU
 		{E69CDEE7-B2F5-42F4-81F0-11DCDC1C8CC9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
 		{E69CDEE7-B2F5-42F4-81F0-11DCDC1C8CC9}.Debug|Any CPU.Build.0 = Debug|Any CPU
 		{E69CDEE7-B2F5-42F4-81F0-11DCDC1C8CC9}.Release|Any CPU.ActiveCfg = Release|Any CPU
 		{E69CDEE7-B2F5-42F4-81F0-11DCDC1C8CC9}.Release|Any CPU.Build.0 = Release|Any CPU
+		{5E1219F5-FC7D-4138-811D-26934E946D30}.Debug_Docker|Any CPU.ActiveCfg = Debug_Docker|Any CPU
+		{5E1219F5-FC7D-4138-811D-26934E946D30}.Debug_Docker|Any CPU.Build.0 = Debug_Docker|Any CPU
+		{5E1219F5-FC7D-4138-811D-26934E946D30}.Debug_Docker|Any CPU.Deploy.0 = Debug_Docker|Any CPU
 		{5E1219F5-FC7D-4138-811D-26934E946D30}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
 		{5E1219F5-FC7D-4138-811D-26934E946D30}.Debug|Any CPU.Build.0 = Debug|Any CPU
@@ -58,4 +72,7 @@
 		{5E1219F5-FC7D-4138-811D-26934E946D30}.Release|Any CPU.Build.0 = Release|Any CPU
 		{5E1219F5-FC7D-4138-811D-26934E946D30}.Release|Any CPU.Deploy.0 = Release|Any CPU
+		{C4CB8596-3F3A-4B4E-BEC5-0720FF7CD532}.Debug_Docker|Any CPU.ActiveCfg = Debug_Docker|Any CPU
+		{C4CB8596-3F3A-4B4E-BEC5-0720FF7CD532}.Debug_Docker|Any CPU.Build.0 = Debug_Docker|Any CPU
+		{C4CB8596-3F3A-4B4E-BEC5-0720FF7CD532}.Debug_Docker|Any CPU.Deploy.0 = Debug_Docker|Any CPU
 		{C4CB8596-3F3A-4B4E-BEC5-0720FF7CD532}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
 		{C4CB8596-3F3A-4B4E-BEC5-0720FF7CD532}.Debug|Any CPU.Build.0 = Debug|Any CPU
@@ -64,8 +81,12 @@
 		{C4CB8596-3F3A-4B4E-BEC5-0720FF7CD532}.Release|Any CPU.Build.0 = Release|Any CPU
 		{C4CB8596-3F3A-4B4E-BEC5-0720FF7CD532}.Release|Any CPU.Deploy.0 = Release|Any CPU
+		{7AD9C86F-46FF-442A-B134-3CE2E82CE0D0}.Debug_Docker|Any CPU.ActiveCfg = Debug_Docker|Any CPU
+		{7AD9C86F-46FF-442A-B134-3CE2E82CE0D0}.Debug_Docker|Any CPU.Build.0 = Debug_Docker|Any CPU
 		{7AD9C86F-46FF-442A-B134-3CE2E82CE0D0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
 		{7AD9C86F-46FF-442A-B134-3CE2E82CE0D0}.Debug|Any CPU.Build.0 = Debug|Any CPU
 		{7AD9C86F-46FF-442A-B134-3CE2E82CE0D0}.Release|Any CPU.ActiveCfg = Release|Any CPU
 		{7AD9C86F-46FF-442A-B134-3CE2E82CE0D0}.Release|Any CPU.Build.0 = Release|Any CPU
+		{D19820A3-E6E6-4B1C-927A-C8B8B4B16D25}.Debug_Docker|Any CPU.ActiveCfg = Debug_Docker|Any CPU
+		{D19820A3-E6E6-4B1C-927A-C8B8B4B16D25}.Debug_Docker|Any CPU.Build.0 = Debug_Docker|Any CPU
 		{D19820A3-E6E6-4B1C-927A-C8B8B4B16D25}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
 		{D19820A3-E6E6-4B1C-927A-C8B8B4B16D25}.Debug|Any CPU.Build.0 = Debug|Any CPU
