1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #22922 from justincormack/ppc64le-seccomp

Enable seccomp on ppc64le
This commit is contained in:
Phil Estes 2016-05-24 16:08:50 -04:00
commit bdc06cf8f8
3 changed files with 11 additions and 1 deletions

View file

@ -168,7 +168,7 @@ RUN useradd --create-home --gid docker unprivilegeduser
VOLUME /var/lib/docker
WORKDIR /go/src/github.com/docker/docker
ENV DOCKER_BUILDTAGS apparmor pkcs11 selinux
ENV DOCKER_BUILDTAGS apparmor pkcs11 seccomp selinux
# Let us use a .bashrc file
RUN ln -sfv $PWD/.bashrc ~/.bashrc

View file

@ -1292,6 +1292,11 @@
"action": "SCMP_ACT_ALLOW",
"args": []
},
{
"name": "socketcall",
"action": "SCMP_ACT_ALLOW",
"args": []
},
{
"name": "socketpair",
"action": "SCMP_ACT_ALLOW",

View file

@ -1321,6 +1321,11 @@ func DefaultProfile(rs *specs.Spec) *types.Seccomp {
Action: types.ActAllow,
Args: []*types.Arg{},
},
{
Name: "socketcall",
Action: types.ActAllow,
Args: []*types.Arg{},
},
{
Name: "socketpair",
Action: types.ActAllow,