Compare commits

..

2 Commits

Author SHA1 Message Date
cc93c296c6 1.0.105 2022-10-17 11:00:42 +02:00
07a4d024a8 fix(core): update 2022-10-17 11:00:42 +02:00
3 changed files with 3 additions and 5 deletions

View File

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

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@mojoio/docker',
version: '1.0.104',
version: '1.0.105',
description: 'easy communication with docker remote api from node, TypeScript ready'
}

View File

@ -45,9 +45,7 @@ export class DockerHost {
throw new Error(response.body.Status);
}
console.log(response.body.Status);
this.registryToken = plugins.smartstring.base64.encode(
plugins.smartjson.stringify(authData)
);
this.registryToken = plugins.smartstring.base64.encode(plugins.smartjson.stringify(authData));
}
/**