-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
75 lines (69 loc) · 1.54 KB
/
docker-compose.yml
File metadata and controls
75 lines (69 loc) · 1.54 KB
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
version: '3.4'
networks:
frontend:
backend:
services:
catalog:
build:
context: .\EventBriteAssignment
dockerfile: Dockerfile
image: eventbrite/catalogapi
environment:
DatabaseServer: mssqlserver
DatabaseName: eventCatalogDb
DatabaseUser: sa
DatabaseUserPassword: EventsApi(!)
ExternalCatalogBaseUrl: http://localhost:5088
ports:
- "5088:80"
container_name: catalogapi
networks:
- backend
- frontend
depends_on:
- mssqlserver
tokenservice:
image: eventbrite/tokenserviceapi
build:
context: .\TokenServiceApi
dockerfile: Dockerfile
environment:
ASPNETCORE_ENVIRONMENT: Development
MvcClient: http://localhost:5090
ports:
- "5092:80"
container_name: tokenapi
networks:
- backend
- frontend
depends_on:
- mssqlserver
webmvc:
build:
context: .\WebMvc
dockerfile: Dockerfile
image: eventbrite/webmvc
environment:
CatalogUrl: http://catalog
IdentityUrl: http://192.168.1.159:5092
CallbackUrl: http://localhost:5090
ASPNETCORE_ENVIRONMENT: Development
ports:
- "5090:80"
container_name: webeventstore
networks:
- frontend
depends_on:
- mssqlserver
- tokenservice
- catalog
mssqlserver:
image: "microsoft/mssql-server-linux:latest"
environment:
ACCEPT_EULA: Y
SA_PASSWORD: EventsApi(!)
container_name: catalogdb
ports:
- "1451:1433"
networks:
- backend