-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker.js
202 lines (168 loc) · 4.99 KB
/
docker.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
import {socketPath} from './constants.js';
import {OCI} from '@davidkhala/container/oci.js';
import {OCIContainerOptsBuilder} from '@davidkhala/container/options.js';
import {Reason, ContainerStatus} from '@davidkhala/container/constants.js';
import stream from 'stream';
import streamPromises from 'stream/promises';
const {NetworkNotFound} = Reason;
const {created, running, exited} = ContainerStatus;
/**
* @typedef {Object} DockerodeOpts
* @property {string} [socketPath]
* @property {string} [protocol]
* @property {string} [host]
* @property {number} [port]
*/
export class ContainerManager extends OCI {
/**
*
* @param {DockerodeOpts} [opts]
* @param [logger]
*/
constructor(opts = {socketPath: socketPath()}, logger) {
super(opts, logger);
}
async networkCreate(Name, swarm) {
const network = await this.client.createNetwork({
Name, CheckDuplicate: true, Driver: swarm ? 'overlay' : 'bridge', Internal: false, Attachable: true
});
return await network.inspect();
}
async networkCreateIfNotExist(name, swarm) {
try {
const network = this.client.getNetwork(name);
const status = await network.inspect();
const {Scope, Driver, Containers} = status;
this.logger.debug(`network[${name}] exist`, {
Scope, Driver, Containers: Containers ? Object.values(Containers).map(({Name}) => Name) : undefined
});
if ((Scope === 'local' && swarm) || (Scope === 'swarm' && !swarm)) {
this.logger.info(`network exist with unwanted ${Scope} ${swarm}`, 're-creating');
await network.remove();
return await this.networkCreate(name, swarm);
}
return status;
} catch (err) {
if (err.statusCode === 404 && err.reason === NetworkNotFound) {
this.logger.info(err.json.message, 'creating');
return await this.networkCreate(name, swarm);
} else {
throw err;
}
}
}
/**
* @param {string} containerName
*/
async containerRestart(containerName) {
const container = this.client.getContainer(containerName);
const containInfo = await container.inspect();
this.logger.debug('restart container', containerName, containInfo.State.Status);
await container.restart();
}
async containerExec(container_name, opts) {
const {Cmd} = opts;
const container = this.client.getContainer(container_name);
const exec = await container.exec(Object.assign({
AttachStderr: true,
AttachStdout: true,
Cmd,
}, opts));
const dockerExecStream = await exec.start({});
const stdoutStream = new stream.PassThrough();
const stderrStream = new stream.PassThrough();
this.client.modem.demuxStream(dockerExecStream, stdoutStream, stderrStream);
dockerExecStream.resume();
await streamPromises.finished(dockerExecStream);
const stderr = stderrStream.read() || '';// read might return null
const stdout = stdoutStream.read() || '';// read might return null
const errStr = stderr.toString();
const outStr = stdout.toString();
const {ExitCode} = await exec.inspect();
if (stderr || ExitCode !== 0) {
const err = Error(errStr);
err.code = ExitCode;
err.stderr = errStr;
err.stdout = outStr;
throw err;
}
return outStr;
}
/**
* TODO how is options
* @param container_name
* @return {Promise<void>}
*/
async containerSolidify({container_name}) {
const container = this.client.getContainer(container_name);
await container.commit();
}
async imagePull(imageName) {
const onProgress = (event) => {
const {status, progress} = event;
// docker event
this.logger.debug(status, imageName, progress || '');
};
return super.imagePull(imageName, onProgress);
}
_afterCreate() {
return [created];
}
_afterStart() {
return [running, exited];
}
_beforeKill() {
return [running];
}
}
export class ContainerOptsBuilder extends OCIContainerOptsBuilder {
constructor(Image, Cmd, logger) {
super(Image, Cmd, logger);
this.opts.ExposedPorts = {};
this.opts.Volumes = {};
}
setHostGateway() {
if (!this.opts.HostConfig.ExtraHosts) {
this.opts.HostConfig.ExtraHosts = [];
}
this.opts.HostConfig.ExtraHosts.push('host.docker.internal:host-gateway', // docker host auto-binding
);
}
/**
* Expose a port used within docker network only
* @param {string} containerPort
* @return {ContainerOptsBuilder}
*/
setExposedPort(containerPort) {
this.opts.ExposedPorts[containerPort] = {};
return this;
}
/**
* @param {string} network
* @param {string[]} Aliases
* @returns {ContainerOptsBuilder}
*/
setNetwork(network, Aliases) {
if (!this.opts.NetworkingConfig) {
this.opts.NetworkingConfig = {};
}
if (!this.opts.NetworkingConfig.EndpointsConfig) {
this.opts.NetworkingConfig.EndpointsConfig = {};
}
this.opts.NetworkingConfig.EndpointsConfig[network] = {
Aliases
};
return this;
}
/**
*
* @param {string} volumeName or a bind-mount absolute path
* @param {string} containerPath
* @returns {ContainerOptsBuilder}
*/
setVolume(volumeName, containerPath) {
super.setVolume(volumeName, containerPath);
this.opts.Volumes[containerPath] = {};// docker only
return this;
}
}