bump dockerode version to 3.0.1 & add default user-agent to dockerode http requests

Signed-off-by: Guillaume Lours <guillaume.lours@docker.com>
This commit is contained in:
Guillaume Lours 2019-09-30 11:38:19 +02:00
Родитель 2ce6482ae8
Коммит 03bc0bb31d
3 изменённых файлов: 493 добавлений и 400 удалений

886
package-lock.json сгенерированный

Разница между файлами не показана из-за своего большого размера Загрузить разницу

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

@ -42,7 +42,7 @@
"cached-request": "1.1.2",
"classnames": "2.2.5",
"deep-extend": "^0.6.0",
"dockerode": "2.5.8",
"dockerode": "3.0.1",
"install": "0.1.8",
"jquery": "^3.4.1",
"mixpanel": "kitematic/mixpanel-node",

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

@ -48,7 +48,7 @@ var DockerUtil = {
if (ip.indexOf('local') !== -1) {
try {
this.client = new dockerode({socketPath: this.socketPath});
this.client = new dockerode({socketPath: this.socketPath, headers: {'user-agent': 'kitematic'}});
} catch (error) {
throw new Error('Cannot connect to the Docker daemon. Is the daemon running?');
}
@ -64,7 +64,8 @@ var DockerUtil = {
port: 2376,
ca: fs.readFileSync(path.join(certDir, 'ca.pem')),
cert: fs.readFileSync(path.join(certDir, 'cert.pem')),
key: fs.readFileSync(path.join(certDir, 'key.pem'))
key: fs.readFileSync(path.join(certDir, 'key.pem')),
headers: {'user-agent': 'kitematic'},
});
}
},