Compare commits

...

3 Commits

Author SHA1 Message Date
44f2aab2f6 1.0.70 2019-09-13 23:08:17 +02:00
b69315f1d3 1.0.69 2019-09-13 23:05:56 +02:00
7d20804986 fix(core): update 2019-09-13 23:05:55 +02:00
3 changed files with 4 additions and 4 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "@mojoio/docker",
"version": "1.0.68",
"version": "1.0.70",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "@mojoio/docker",
"version": "1.0.68",
"version": "1.0.70",
"description": "easy communication with docker remote api from node, TypeScript ready",
"private": false,
"main": "dist/index.js",

View File

@ -65,8 +65,8 @@ export class DockerService {
const containerPort = portArray[1];
ports.push({
"Protocol": "tcp",
"PublishedPort": containerPort,
"TargetPort": hostPort
"PublishedPort": parseInt(containerPort, 10),
"TargetPort": parseInt(hostPort, 10)
});
}