Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion lib/docker.js
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,10 @@ exports.runContainer = function (parameters, callback) {
const options = {
Image: image,
ExposedPorts: {},
HostConfig: { PortBindings: {} }
HostConfig: {
CapAdd: ['SYS_PTRACE'],
PortBindings: {},
}
};

for (const port in ports) {
Expand Down