-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathtye.yaml
46 lines (41 loc) · 1.31 KB
/
tye.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# tye application configuration file
# read all about it at https://github.com/dotnet/tye
#
# when you've given us a try, we'd love to know what you think:
# https://aka.ms/AA7q20u
#
name: practical-dapr
extensions:
- name: dapr
log-level: debug
config: appconfig
# - name: zipkin
# - name: elastic
# logPath: ./.logs
# registry: dapracr.azurecr.io or docker.pkg.github.com/thangchung/practical-dapr
registry: vndg
services:
- name: graphapi
project: src/GraphApi/CoolStore.GraphApi/CoolStore.GraphApi.csproj
- name: identityserver
project: src/Identity/CoolStore.IdentityServer/CoolStore.IdentityServer.csproj
- name: productcatalogapi
project: src/ProductCatalog/CoolStore.ProductCatalogApi/CoolStore.ProductCatalogApi.csproj
- name: inventoryapi
project: src/Inventory/CoolStore.InventoryApi/CoolStore.InventoryApi.csproj
- name: webuihost
project: src/WebUI/CoolStore.WebUI.Host/CoolStore.WebUI.Host.csproj
- name: sqlserver
image: mcr.microsoft.com/mssql/server:2017-latest
env:
- name: SA_PASSWORD
value: "P@ssw0rd"
- name: ACCEPT_EULA
value: "Y"
bindings:
- port: 1433
connectionString: Data Source=${host},${port};Initial Catalog=coolstoredb;User Id=sa;Password=${env:SA_PASSWORD};MultipleActiveResultSets=True;
- name: redis
image: redis
bindings:
- port: 6379