Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run ibmcom/db2 container non privileged. #127

Merged
merged 1 commit into from
Dec 21, 2020
Merged
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,10 @@ class IBMPythonActionDB2Tests extends TestHelpers with WskTestHelpers with Befor
"docker",
"run",
"-d",
"--cap-add",
"IPC_LOCK",
"--cap-add",
"IPC_OWNER",
"-p",
"50000:50000",
"-e",
Expand All @@ -113,7 +117,6 @@ class IBMPythonActionDB2Tests extends TestHelpers with WskTestHelpers with Befor
"DB2INST1_PASSWORD=db2inst1-pwd",
"-e",
"LICENSE=accept",
"--privileged=true",
"--name",
db2containerName,
"ibmcom/db2")
Expand Down