-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
42 lines (42 loc) · 927 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
42 lines (42 loc) · 927 Bytes
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
version: "3.7"
services:
monolith:
build:
context: ./monolith
dockerfile: ./Dockerfile.dev
ports:
- "8000:8000"
volumes:
- ./monolith:/app
depends_on:
- rabbitmq
attendees_microservice:
build:
context: ./attendees_microservice
dockerfile: ./Dockerfile.dev
ports:
- "8001:8001"
volumes:
- ./attendees_microservice:/app
attendees_account_info:
build:
context: ./attendees_microservice
dockerfile: ./Dockerfile.account_info.dev
volumes:
- ./attendees_microservice:/app
presentation_workflow:
build:
context: ./presentation_workflow
dockerfile: ./Dockerfile.dev
depends_on:
- rabbitmq
volumes:
- ./presentation_workflow:/app
rabbitmq:
image: rabbitmq:3
mail:
image: mailhog/mailhog
environment:
- MH_SMTP_BIND_ADDR=0.0.0.0:25
ports:
- "3000:8025"