-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
41 lines (37 loc) · 849 Bytes
/
docker-compose.yml
File metadata and controls
41 lines (37 loc) · 849 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
version: '2'
services:
custom_rabbitmq:
build: ./docker-rabbitmq
hostname: custom_rabbitmq
ports:
- "1883:1883"
- "5671:5671"
- "5672:5672"
- "15671:15671"
- "15672:15672"
- "15674:15674"
- "15675:15675"
- "25672:25672"
- "61613:61613"
- "15670:15670"
networks:
- resolute
rabbitamazonforwarder:
image: airhelp/rabbit-amazon-forwarder
ports:
- "8080:8080"
volumes:
- ./mapping.json:/config/mapping.json
environment:
MAPPING_FILE: /config/mapping.json
AWS_REGION: us-east-1
AWS_ACCESS_KEY_ID: AKIA2E3YXCQLD6JZVKU5
AWS_SECRET_ACCESS_KEY: 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
networks:
- resolute
depends_on:
- custom_rabbitmq
networks:
resolute:
external:
name: resolute