-
Notifications
You must be signed in to change notification settings - Fork 9
/
docker-compose.yml
42 lines (36 loc) · 1.27 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
services:
ibmmq:
image: ibmcom/mq:9.2.4.0-r1 # https://github.com/ibm-messaging/mq-container
ports:
- "1414:1414"
- "9443:9443" # https://localhost:9443/ibmmq/console/
volumes:
- ./scripts/definitions.mqsc:/etc/mqm/definitions.mqsc:ro
environment:
- LICENSE=accept
- MQ_QMGR_NAME=QM1
# Users
# Userid: admin Groups: mqm Password: passw0rd
# Userid: app Groups: mqclient Password:
# Queues
# DEV.QUEUE.1
# DEV.QUEUE.2
# DEV.QUEUE.3
# DEV.DEAD.LETTER.QUEUE - Set as the Queue Manager's Dead Letter Queue.
# Channels
# DEV.ADMIN.SVRCONN - Set to only allow the admin user to connect into it and a Userid + Password must be supplied.
# DEV.APP.SVRCONN - Does not allow Administrator users to connect.
# Listener
# DEV.LISTENER.TCP - Listening on Port 1414.
# Topic
# DEV.BASE.TOPIC - With a topic string of dev/
activemq:
image: vromero/activemq-artemis:2.16.0 # https://github.com/vromero/activemq-artemis-docker/blob/master/README.md
ports:
- "8161:8161" # http://localhost:8161/console
- "61616:61616"
volumes:
- ./scripts/broker-00.xml:/var/lib/artemis/etc-override/broker-00.xml:ro
environment:
- ARTEMIS_USERNAME=admin
- ARTEMIS_PASSWORD=passw0rd