Last active
December 13, 2018 10:18
-
-
Save steklopod/f95d95217c46194a16d4fb7f062ca032 to your computer and use it in GitHub Desktop.
DOCKER заметки
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
В PowerShell, запустив как админ (для IBM MQ): | |
Enable-WindowsOptionalFeature –Online -FeatureName Microsoft-Hyper-V –All -NoRestart | |
bcdedit /set hypervisorlaunchtype auto | |
ЗАПУСК очереди: | |
docker run -e LICENSE=accept -e MQ_QMGR_NAME=QM1 -p 1414:1414 -p 9443:9443 ibmcom/mq | |
ОСТАНОВИТЬ ВСЕ: | |
docker rm -f $(docker ps -a -q) | |
Gradle update .m2 repository: | |
gradle build --refresh-dependencies | |
Для ibm-mq в файле app.yml: | |
ibm: | |
mq: | |
queueManager: QM1 | |
channel: DEV.ADMIN.SVRCONN | |
connName: 10.149.1.19(1414) | |
user: admin | |
password: passw0rd |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment