Fix issue starting local registry with customports (#349)

This commit is contained in:
Ray Fang 2018-11-01 10:08:50 +08:00 коммит произвёл GitHub
Родитель 4c879b50c6
Коммит 485100cd8e
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 4 добавлений и 13 удалений

15
.vscode/launch.json поставляемый
Просмотреть файл

@ -5,20 +5,11 @@
"name": "Python Module",
"type": "python",
"request": "launch",
"stopOnEntry": true,
"module": "iotedgedev.cli",
"args": [
"solution",
"new",
"test_solution"
"push"
],
"debugOptions": [
"RedirectOutput"
],
"env": {
"DOTENV_FILE": ".env",
}
"cwd": "${workspaceFolder}/tests/test_solution"
}
]
}
}

Просмотреть файл

@ -43,7 +43,7 @@ class Docker:
raise ValueError("You must specific a port for your local registry server. Expected: 'localhost:5000'. Found: " + local_server)
port = parts[1]
ports = {'{0}/tcp'.format(port): int(port)}
ports = {'5000/tcp': int(port)}
try:
self.output.info("Looking for local 'registry' container")