From 14da2c38856299b5fdd9051b868ebc94f0fd769c Mon Sep 17 00:00:00 2001 From: Cesar De la Torre Llorente Date: Tue, 9 Jan 2018 09:23:47 -0800 Subject: [PATCH] Fixed SQL pwd in docker-compose for Linux --- docker-compose.ci.build.yml | 1 + docker-compose.override.yml | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/docker-compose.ci.build.yml b/docker-compose.ci.build.yml index b0c22e49f..747e8e583 100644 --- a/docker-compose.ci.build.yml +++ b/docker-compose.ci.build.yml @@ -8,6 +8,7 @@ services: - ./cli-linux:/cli-linux working_dir: /src + # Next line is using the .sln file to compile all the projects. # Sometime there is an issue in msbuild exits the process before finishing building the bits: (https://github.com/Microsoft/msbuild/issues/2153) # Random error: error MSB4017: The build stopped unexpectedly be cause of an unexpected logger failure. diff --git a/docker-compose.override.yml b/docker-compose.override.yml index f0ead3653..06cd5ee78 100644 --- a/docker-compose.override.yml +++ b/docker-compose.override.yml @@ -201,9 +201,9 @@ services: ports: - "5109:80" - sql.data: - environment: - - sa_password=Pass@word + sql.data: + environment: + - MSSQL_SA_PASSWORD=Pass@word - ACCEPT_EULA=Y ports: - "5433:1433"