18 lines
412 B
YAML
18 lines
412 B
YAML
version: '2'
|
|
|
|
services:
|
|
eshopweb:
|
|
environment:
|
|
- ASPNETCORE_ENVIRONMENT=Development
|
|
- ConnectionString=Server=sql.data;Database=Microsoft.eShopOnContainers.Services.CatalogDb;User Id=sa;Password=Pass@word
|
|
- CatalogBaseUrl=http://localhost:5106
|
|
ports:
|
|
- "5106:5106"
|
|
|
|
sql.data:
|
|
environment:
|
|
- SA_PASSWORD=Pass@word
|
|
- ACCEPT_EULA=Y
|
|
ports:
|
|
- "5433:1433"
|