Last active
October 30, 2018 18:19
-
-
Save orpiske/43574edf7c6c3ef150550c70820c25b8 to your computer and use it in GitHub Desktop.
Docker compose for running IBM MQ Light as a SUT with Maestro
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.4' | |
services: | |
sut: | |
image: docker.io/ibmcom/mqlight | |
environment: | |
# You have to specifically accept the license on your own. | |
# this is provided just as a convenience | |
# - LICENSE=accept | |
networks: | |
- test | |
hostname: sut | |
ports: | |
- "15672:15672" | |
- "5672:5672" | |
- "9180:9180" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment