This repository has been archived by the owner on Apr 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
tye.yaml
99 lines (90 loc) · 1.97 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# 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: todos
services:
- name: web
project: src/Web/Web.csproj
bindings:
- name: http
protocol: http
port: 5000
- name: https
protocol: https
port: 5001
- name: clientapp
project: src/ClientApp/ClientApp.csproj
bindings:
- name: http
protocol: http
port: 5020
- name: https
protocol: https
port: 5021
- name: mssql
image: mcr.microsoft.com/azure-sql-edge:latest
env:
- name: MSSQL_SA_PASSWORD
value: P@ssw0rd
- name: MSSQL_PID
value: Developer
- name: ACCEPT_EULA
value: "Y"
bindings:
- port: 1433
connectionString: Server=${host},${port};User Id=sa;Password=${env:MSSQL_SA_PASSWORD};Encrypt=false
volumes:
- source: .data/sql-edge
target: /var/opt/mssql/data
- name: rabbitmq
image: rabbitmq:3-management
bindings:
- name: rabbit
port: 5672
protocol: rabbitmq
- name: management
port: 15672
- name: redis
image: redis
bindings:
- port: 6379
connectionString: "${host}:${port}"
- name: redis-cli
image: redis
args: "redis-cli -h redis MONITOR"
- name: zipkin
image: openzipkin/zipkin
bindings:
- port: 9411
- name: healthchecks
project: other/HealthChecks/HealthChecks.csproj
bindings:
- name: http
protocol: http
port: 5030
- name: https
protocol: https
port: 5031
- name: identityservice
project: other/IdentityService/IdentityService.csproj
bindings:
- name: http
protocol: http
port: 5040
- name: https
protocol: https
port: 5041
- name: smtp4dev
image: rnwood/smtp4dev:prerelease
bindings:
- name: ui
port: 3000
containerPort: 80
protocol: http
- name: smtp
port: 25
containerPort: 25
protocol: smtp