Clifford Beta
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
15 additions and
4 deletions
-
docker-compose.yml
-
src/PublicApi/appsettings.Docker.json
-
src/Web/appsettings.Docker.json
|
|
|
@ -6,9 +6,20 @@ services: |
|
|
|
build: |
|
|
|
context: . |
|
|
|
dockerfile: src/Web/Dockerfile |
|
|
|
depends_on: |
|
|
|
- "sqlserver" |
|
|
|
eshoppublicapi: |
|
|
|
image: ${DOCKER_REGISTRY-}eshoppublicapi |
|
|
|
build: |
|
|
|
context: . |
|
|
|
dockerfile: src/PublicApi/Dockerfile |
|
|
|
depends_on: |
|
|
|
- "sqlserver" |
|
|
|
sqlserver: |
|
|
|
image: mcr.microsoft.com/azure-sql-edge |
|
|
|
ports: |
|
|
|
- "1433:1433" |
|
|
|
environment: |
|
|
|
- SA_PASSWORD=@someThingComplicated1234 |
|
|
|
- ACCEPT_EULA=Y |
|
|
|
|
|
|
|
|
|
|
|
@ -1,7 +1,7 @@ |
|
|
|
{ |
|
|
|
"ConnectionStrings": { |
|
|
|
"CatalogConnection": "Server=(localdb)\\mssqllocaldb;Integrated Security=true;Initial Catalog=Microsoft.eShopOnWeb.CatalogDb;", |
|
|
|
"IdentityConnection": "Server=(localdb)\\mssqllocaldb;Integrated Security=true;Initial Catalog=Microsoft.eShopOnWeb.Identity;" |
|
|
|
"CatalogConnection": "Server=sqlserver,1433;Integrated Security=true;Initial Catalog=Microsoft.eShopOnWeb.CatalogDb;User Id=sa;Password=@someThingComplicated1234;Trusted_Connection=false;", |
|
|
|
"IdentityConnection": "Server=sqlserver,1433;Integrated Security=true;Initial Catalog=Microsoft.eShopOnWeb.Identity;User Id=sa;Password=@someThingComplicated1234;Trusted_Connection=false;" |
|
|
|
}, |
|
|
|
"baseUrls": { |
|
|
|
"apiBase": "http://localhost:5200/api/", |
|
|
|
|
|
|
|
@ -1,7 +1,7 @@ |
|
|
|
{ |
|
|
|
"ConnectionStrings": { |
|
|
|
"CatalogConnection": "Server=(localdb)\\mssqllocaldb;Integrated Security=true;Initial Catalog=Microsoft.eShopOnWeb.CatalogDb;", |
|
|
|
"IdentityConnection": "Server=(localdb)\\mssqllocaldb;Integrated Security=true;Initial Catalog=Microsoft.eShopOnWeb.Identity;" |
|
|
|
"CatalogConnection": "Server=sqlserver,1433;Integrated Security=true;Initial Catalog=Microsoft.eShopOnWeb.CatalogDb;User Id=sa;Password=@someThingComplicated1234;Trusted_Connection=false;", |
|
|
|
"IdentityConnection": "Server=sqlserver,1433;Integrated Security=true;Initial Catalog=Microsoft.eShopOnWeb.Identity;User Id=sa;Password=@someThingComplicated1234;Trusted_Connection=false;" |
|
|
|
}, |
|
|
|
"baseUrls": { |
|
|
|
"apiBase": "http://localhost:5200/api/", |
|
|
|
|