forked from markslingerland/Sombra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.build.yml
86 lines (74 loc) · 2.35 KB
/
docker-compose.build.yml
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
version: '3.4'
services:
sombra.web:
image: ${DC_REPOSITORY}/sombra.web:1.0.0
container_name: sombra.web
build:
context: .
dockerfile: Sombra.Web/Dockerfile
sombra.charityservice:
image: ${DC_REPOSITORY}/sombra.charityservice:1.0.0
container_name: sombra.charityservice
build:
context: .
dockerfile: Sombra.CharityService/Dockerfile
sombra.charityactionservice:
image: ${DC_REPOSITORY}/sombra.charityactionservice:1.0.0
container_name: sombra.charityactionservice
build:
context: .
dockerfile: Sombra.CharityActionService/Dockerfile
sombra.emailservice:
image: ${DC_REPOSITORY}/sombra.emailservice:1.0.0
container_name: sombra.emailservice
build:
context: .
dockerfile: Sombra.EmailService/Dockerfile
sombra.identityservice:
image: ${DC_REPOSITORY}/sombra.identityservice:1.0.0
container_name: sombra.identityservice
build:
context: .
dockerfile: Sombra.IdentityService/Dockerfile
sombra.templateservice:
image: ${DC_REPOSITORY}/sombra.templateservice:1.0.0
container_name: sombra.templateservice
build:
context: .
dockerfile: Sombra.TemplateService/Dockerfile
sombra.userservice:
image: ${DC_REPOSITORY}/sombra.userservice:1.0.0
container_name: sombra.userservice
build:
context: .
dockerfile: Sombra.UserService/Dockerfile
sombra.donateservice:
image: ${DC_REPOSITORY}/sombra.donateservice:1.0.0
container_name: sombra.donateservice
build:
context: .
dockerfile: Sombra.DonateService/Dockerfile
sombra.loggingservice:
image: ${DC_REPOSITORY}/sombra.loggingservice:1.0.0
container_name: sombra.loggingservice
build:
context: .
dockerfile: Sombra.LoggingService/Dockerfile
sombra.searchservice:
image: ${DC_REPOSITORY}/sombra.searchservice:1.0.0
container_name: sombra.searchservice
build:
context: .
dockerfile: Sombra.SearchService/Dockerfile
sombra.timeservice:
image: ${DC_REPOSITORY}/sombra.timeservice:1.0.0
container_name: sombra.timeservice
build:
context: .
dockerfile: Sombra.TimeService/Dockerfile
sombra.storyservice:
image: ${DC_REPOSITORY}/sombra.storyservice:1.0.0
container_name: sombra.storyservice
build:
context: .
dockerfile: Sombra.StoryService/Dockerfile