-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
53 lines (48 loc) · 1.18 KB
/
docker-compose.yml
File metadata and controls
53 lines (48 loc) · 1.18 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
services:
gateway:
build: ./src/CloudTaskManager.Gateway
ports:
- "5000:8080"
depends_on:
- identity
- task
- notification
environment:
- ASPNETCORE_URLS=http://+:8080
identity:
build: ./src/CloudTaskManager.Identity
ports:
- "5113:8080"
environment:
- ASPNETCORE_URLS=http://+:8080
- ConnectionStrings__IdentityDatabase=Data Source=identity.db
task:
build: ./src/CloudTaskManager.Tasks
ports:
- "5138:8080"
depends_on:
- rabbitmq
environment:
- ASPNETCORE_URLS=http://+:8080
- ConnectionStrings__TaskDatabase=Data Source=task.dbs
- RabbitMq__Host=rabbitmq
- RabbitMq__Port=5672
- RabbitMq__UserName=guest
- RabbitMq__Password=guest
notification:
build: ./src/CloudTaskManager.Notifications
ports:
- "5145:8080"
depends_on:
- rabbitmq
environment:
- ASPNETCORE_URLS=http://+:8080
- RabbitMq__Host=rabbitmq
- RabbitMq__Port=5672
- RabbitMq__UserName=guest
- RabbitMq__Password=guest
rabbitmq:
image: rabbitmq:3-management
ports:
- "5672:5672"
- "15672:15672" # RabbitMQ dashboard