Skip to content

Instantly share code, notes, and snippets.

@steklopod
Last active December 13, 2018 10:18
Show Gist options
  • Save steklopod/f95d95217c46194a16d4fb7f062ca032 to your computer and use it in GitHub Desktop.
Save steklopod/f95d95217c46194a16d4fb7f062ca032 to your computer and use it in GitHub Desktop.
DOCKER заметки
В 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