Compare commits

..

2 Commits

Author SHA1 Message Date
4569bffc37 1.0.103 2020-10-05 15:08:38 +00:00
ad4e6ad206 fix(core): update 2020-10-05 15:08:38 +00:00
3 changed files with 971 additions and 931 deletions

1894
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{ {
"name": "@mojoio/docker", "name": "@mojoio/docker",
"version": "1.0.102", "version": "1.0.103",
"description": "easy communication with docker remote api from node, TypeScript ready", "description": "easy communication with docker remote api from node, TypeScript ready",
"private": false, "private": false,
"main": "dist_ts/index.js", "main": "dist_ts/index.js",
@ -28,8 +28,8 @@
"homepage": "https://gitlab.com/pushrocks/dockersock#README", "homepage": "https://gitlab.com/pushrocks/dockersock#README",
"dependencies": { "dependencies": {
"@pushrocks/lik": "^4.0.17", "@pushrocks/lik": "^4.0.17",
"@pushrocks/smartfile": "^8.0.0", "@pushrocks/smartfile": "^8.0.4",
"@pushrocks/smartjson": "^3.0.10", "@pushrocks/smartjson": "^4.0.2",
"@pushrocks/smartlog": "^2.0.39", "@pushrocks/smartlog": "^2.0.39",
"@pushrocks/smartnetwork": "^1.1.22", "@pushrocks/smartnetwork": "^1.1.22",
"@pushrocks/smartpath": "^4.0.3", "@pushrocks/smartpath": "^4.0.3",

View File

@ -46,7 +46,7 @@ export class DockerHost {
} }
console.log(response.body.Status); console.log(response.body.Status);
this.registryToken = plugins.smartstring.base64.encode( this.registryToken = plugins.smartstring.base64.encode(
plugins.smartjson.Smartjson.stringify(authData, {}) plugins.smartjson.stringify(authData, {})
); );
} }