-
Notifications
You must be signed in to change notification settings - Fork 0
/
compose-dev.yaml
154 lines (140 loc) · 6.83 KB
/
compose-dev.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
version: '3.7'
services:
sql_db:
container_name: db-sql
image: mcr.microsoft.com/mssql/server:2017-latest
environment:
- MSSQL_SA_PASSWORD=Db4dmin0
- ACCEPT_EULA=Y
ports:
- "1433:1433"
volumes:
- db_data_mssql:/var/opt/mssql
- db_data_sqlserver:/var/opt/sqlserver
arango_db:
container_name: db-arango
image: arangodb:3.10.1
ports:
- "8529:8529"
entrypoint: /entrypoint.sh --server.endpoint tcp://0.0.0.0:8529 --database.directory /data
volumes:
- arango_data:/data
environment:
ARANGO_ROOT_PASSWORD: ""
dashboard-one:
container_name: frontend-dashboard-one
depends_on:
- api
image: givt/givtdashboarddebug:latest
ports:
- "1000:80"
dashboard-two:
container_name: frontend-dashboard-two
depends_on:
- api
image: givt/givtdashboard2:pre
ports:
- "2000:80"
flash-control:
container_name: frontend-flash-control
depends_on:
- api
image: givt/givtcontrol:latest
ports:
- "3000:80"
flash-crowd:
container_name: frontend-flash-crowd
depends_on:
- api
image: givt/crowdgivt:latest
ports:
- "4000:80"
api:
container_name: backend-api
depends_on:
- sql_db
- arango_db
image: givt/givtapicoredbg
environment:
- DOTNET_ENVIRONMENT=Development
- ASPNETCORE_ENVIRONMENT=Development
- LogitConfiguration__Tag=Givt.API.Local
- ConnectionStrings__AzureAppConfig=Endpoint=https://givt-debug-app-config.azconfig.io;Id=GCv1-l9-s0:72C0wCDYMNZTS5mNlhcn;Secret=aMWM+4IeGL4IMjX5nyXKKh31/6OJ9h/4JrGqgvYabXU=
- ConnectionStrings__GivtDbConnection=Server=sql_db;Initial Catalog=GivtDbDebug;Persist Security Info=False;User ID=SA;Password=Db4dmin0;Connection Timeout=30;
- ServiceBusConfiguration__ConnectionString=Endpoint=sb://givttest.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=4uv+G6p+B2fxdzQBbDYui9hjJdZxLdF4qVtdtmt3PrU=
ports:
- "5000:8080"
workers-hmrc:
container_name: backend-workers-1-hmrc
image: givt/workers.hmrc-development:latest
ports:
- "5501:8080"
environment:
- DOTNET_ENVIRONMENT=Development
- ASPNETCORE_ENVIRONMENT=Development
- LogitConfiguration__Tag=Givt.Workers.Hmrc.Local
- ConnectionStrings__AzureAppConfig=Endpoint=https://givt-debug-app-config.azconfig.io;Id=GCv1-l9-s0:72C0wCDYMNZTS5mNlhcn;Secret=aMWM+4IeGL4IMjX5nyXKKh31/6OJ9h/4JrGqgvYabXU=
- ConnectionStrings__GivtDatabaseContext=Server=sql_db;Initial Catalog=GivtDbDebug;Persist Security Info=False;User ID=SA;Password=Db4dmin0;Connection Timeout=30;
- ServiceBusConfiguration__ConnectionString=Endpoint=sb://givttest.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=4uv+G6p+B2fxdzQBbDYui9hjJdZxLdF4qVtdtmt3PrU=
workers-onboardingreminders:
container_name: backend-workers-2-onboarding-reminders
image: givt/workers.onboardingreminders-development:latest
ports:
- "5502:8080"
environment:
- DOTNET_ENVIRONMENT=Development
- ASPNETCORE_ENVIRONMENT=Development
- LogitConfiguration__Tag=Givt.Workers.OnboardingReminders.Local
- ConnectionStrings__AzureAppConfig=Endpoint=https://givt-debug-app-config.azconfig.io;Id=GCv1-l9-s0:72C0wCDYMNZTS5mNlhcn;Secret=aMWM+4IeGL4IMjX5nyXKKh31/6OJ9h/4JrGqgvYabXU=
- ConnectionStrings__GivtDatabaseContext=Server=sql_db;Initial Catalog=GivtDbDebug;Persist Security Info=False;User ID=SA;Password=Db4dmin0;Connection Timeout=30;
- ServiceBusConfiguration__ConnectionString=Endpoint=sb://givttest.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=4uv+G6p+B2fxdzQBbDYui9hjJdZxLdF4qVtdtmt3PrU=
workers-debitusers:
container_name: backend-workers-3-debit-users
image: givt/workers.debitusers-development:latest
user: root
ports:
- "5503:8080"
environment:
- DOTNET_ENVIRONMENT=Development
- ASPNETCORE_ENVIRONMENT=Development
- LogitConfiguration__Tag=Givt.Workers.DebitUsers.Local
- ConnectionStrings__AzureAppConfig=Endpoint=https://givt-debug-app-config.azconfig.io;Id=GCv1-l9-s0:72C0wCDYMNZTS5mNlhcn;Secret=aMWM+4IeGL4IMjX5nyXKKh31/6OJ9h/4JrGqgvYabXU=
- ConnectionStrings__GivtDatabaseContext=Server=sql_db;Initial Catalog=GivtDbDebug;Persist Security Info=False;User ID=SA;Password=Db4dmin0;Connection Timeout=30;
- ServiceBusConfiguration__ConnectionString=Endpoint=sb://givttest.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=4uv+G6p+B2fxdzQBbDYui9hjJdZxLdF4qVtdtmt3PrU=
workers-validate-transactions:
container_name: backend-workers-4-validate-transactions
image: givt/workers.validate-transactions-development:latest
ports:
- "5504:8080"
environment:
- DOTNET_ENVIRONMENT=Development
- ASPNETCORE_ENVIRONMENT=Development
- LogitConfiguration__Tag=Givt.Workers.ValidateTransactions.Local
- ConnectionStrings__AzureAppConfig=Endpoint=https://givt-debug-app-config.azconfig.io;Id=GCv1-l9-s0:72C0wCDYMNZTS5mNlhcn;Secret=aMWM+4IeGL4IMjX5nyXKKh31/6OJ9h/4JrGqgvYabXU=
- ConnectionStrings__GivtDatabaseContext=Server=sql_db;Initial Catalog=GivtDbDebug;Persist Security Info=False;User ID=SA;Password=Db4dmin0;Connection Timeout=30;
- ServiceBusConfiguration__ConnectionString=Endpoint=sb://givttest.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=4uv+G6p+B2fxdzQBbDYui9hjJdZxLdF4qVtdtmt3PrU=
workers-servicebus:
container_name: backend-servicebus
image: givt/givtservicebusdbg:latest
ports:
- "5500:8080"
environment:
- DOTNET_ENVIRONMENT=Development
- ASPNETCORE_ENVIRONMENT=Development
- LogitConfiguration__ELKLogTag=Givt.ServiceBus.Local
- ConnectionStrings__AzureAppConfig=Endpoint=https://givt-debug-app-config.azconfig.io;Id=GCv1-l9-s0:72C0wCDYMNZTS5mNlhcn;Secret=aMWM+4IeGL4IMjX5nyXKKh31/6OJ9h/4JrGqgvYabXU=
- ConnectionStrings__GivtDbConnection=Server=sql_db;Initial Catalog=GivtDbDebug;Persist Security Info=False;User ID=SA;Password=Db4dmin0;Connection Timeout=30;
- ServiceBusConfiguration__ConnectionString=Endpoint=sb://givttest.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=4uv+G6p+B2fxdzQBbDYui9hjJdZxLdF4qVtdtmt3PrU=
transactions-dashboard:
container_name: frontend-dashboard-transactions
image: givt/givt.dashboard.transactions
ports:
- "6000:5000"
environment:
- DOTNET_ENVIRONMENT=Development
- ASPNETCORE_ENVIRONMENT=Development
- ConnectionStrings__AzureAppConfig=Endpoint=https://givt-debug-app-config.azconfig.io;Id=GCv1-l9-s0:72C0wCDYMNZTS5mNlhcn;Secret=aMWM+4IeGL4IMjX5nyXKKh31/6OJ9h/4JrGqgvYabXU=
volumes:
db_data_mssql:
db_data_sqlserver:
arango_data: