-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
50 lines (43 loc) · 1.45 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
version: "3.8"
services:
standalone-router:
container_name: standalone_router
build:
context: .
volumes:
# Configuration file
- ./router-configuration/router.conf:/etc/qpid-dispatch/qdrouterd.conf
# Azure cert
- ./certificates/azure-ca.crt:/etc/pki/tls/certs/azure-ca.crt
# ROUTER CERT + KEY
- ./certificates/cert/tls.crt:/etc/pki/tls/certs/tls.crt
- ./certificates/cert/tls.key:/etc/pki/tls/private/tls.key
environment:
- CERT_PASSWORD=Passw0rd
ports:
- "8080:8080"
- "5672:5672"
# publisher:
# container_name: publisher
# build:
# context: ./publisher/simple-message-routed-publisher
# environment:
# - ROUTER_ADDRESS=standalone-router
# depends_on:
# - standalone-router
# consumer:
# container_name: consumer
# build:
# context: ./consumer/simple-message-routed-subscriber
# environment:
# - ROUTER_ADDRESS=standalone-router
# depends_on:
# - standalone-router
# linkroute:
# container_name: linkroute
# build:
# context: ./linkroute/simple-message-routed-subscriber
# environment:
# - ROUTER_ADDRESS=standalone-router
# depends_on:
# - standalone-router