This repository has been archived by the owner on Sep 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
60 lines (50 loc) · 1.55 KB
/
docker-compose.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
version: '3.6'
services:
grayson.examplecqrs.kmstanden.host.consoleapp:
image: graysonexamplecqrskmstandenhostconsoleapp
build:
context: ./Grayson.ExampleCQRS.KmStanden.Host.ConsoleApp
#dockerfile: ./Grayson.ExampleCQRS.KmStanden.Host.ConsoleApp/Dockerfile
depends_on:
- rabbitmq
#
grayson.examplecqrs.kmstanden.webapi:
image: graysonexamplecqrskmstandenwebapi
build:
context: ./Grayson.ExampleCQRS.KmStanden.WebApi
#dockerfile:
depends_on:
- rabbitmq
- events.data
grayson.examplecqrs.ritten.host.consoleapp:
image: graysonexamplecqrsrittenhostconsoleapp
build:
context: ./Grayson.ExampleCQRS.Ritten.Host.ConsoleApp
#dockerfile: Grayson.ExampleCQRS.Ritten.Host.ConsoleApp/Dockerfile
depends_on:
- rabbitmq
- events.data
- sql.data
grayson.examplecqrs.readmodel.host.consoleapp:
image: graysonexamplecqrsreadmodelhostconsoleapp
build:
context: ./Grayson.ExampleCQRS.Readmodel.Host.ConsoleApp
#dockerfile: Grayson.ExampleCQRS.Readmodel.Host.ConsoleApp/Dockerfile
depends_on:
- rabbitmq
- sql.data
grayson.examplecqrs.readmodel.wepapi:
image: graysonexamplecqrsreadmodelwepapi
build:
context: ./Grayson.ExampleCQRS.ReadModel.WepApi
#dockerfile: Grayson.ExampleCQRS.ReadModel.WepApi/Dockerfile
sql.data:
image: microsoft/mssql-server-linux:2017-latest
volumes:
- sqlvolume:/var/opt/mssql
events.data:
image: mongo
rabbitmq:
image: rabbitmq:3-management-alpine
volumes:
sqlvolume: