-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
49 lines (48 loc) · 1020 Bytes
/
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
services:
notification-1:
image: herculanoleo/notification:latest
container_name: notification-1
env_file:
- ./.env
hostname: notification-1
ports:
- '9000:8080'
networks:
- common
notification-2:
image: herculanoleo/notification:latest
container_name: notification-2
env_file:
- ./.env
hostname: notification-2
ports:
- '9001:8080'
networks:
- common
email-sender-1:
image: herculanoleo/email-sender:latest
container_name: email-sender-1
env_file:
- ./.env
hostname: email-sender-1
networks:
- common
email-sender-2:
image: herculanoleo/email-sender:latest
container_name: email-sender-2
env_file:
- ./.env
hostname: email-sender-2
networks:
- common
processor-1:
image: herculanoleo/processor:latest
container_name: processor-1
env_file:
- ./.env
hostname: processor-1
networks:
- common
networks:
common:
external: true