hydrophonic
Advanced tools
Comparing version 1.0.1 to 1.0.2
@@ -199,2 +199,21 @@ const | ||
createVolume: ({ name })=> | ||
client({ | ||
path: "volumes/create", | ||
method: "POST", | ||
json: { name } | ||
}) | ||
.thru(decodeResponse) | ||
.map(fp.get('Name')) | ||
.toProperty(), | ||
removeVolume: ({ name, force = true })=> | ||
client({ | ||
method: "DELETE", | ||
path: `volumes/${name}`, | ||
qs: { force } | ||
}) | ||
.thru(decodeResponse) | ||
.toProperty(), | ||
createContainer: ({ name, image, cmd, link, entrypoint, env, binds, privileged = false })=> client({ | ||
@@ -201,0 +220,0 @@ path: "containers/create", |
{ | ||
"name": "hydrophonic", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "Streamed Docker-Engine client library, instrumented and interfaced with Kefir.js", | ||
@@ -9,10 +9,3 @@ "main": "./lib/hydrophonic.js", | ||
}, | ||
"keywords": [ | ||
"stream", | ||
"engine", | ||
"docker", | ||
"client", | ||
"kefirjs", | ||
"kefir" | ||
], | ||
"keywords": ["stream", "engine", "docker", "client", "kefirjs", "kefir"], | ||
"author": "Tal Weinfeld", | ||
@@ -19,0 +12,0 @@ "license": "MIT", |
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
1
15897
3
309