libseccomp2

libseccomp2

トラブルシューティング

-x 等が正しい結果を返さない

[1] Q: -x がおかしいです。

$ docker run -it debian:sid bash -c 'test -e /bin/bash && echo "e"; test -x /bin/bash && echo "x"'
e
x

これが期待される結果なのに、 debian, ubuntu:focal などでは正常に動作し、 debian:sid, ubuntu:latest, ubuntu:devel などでは「e」しか出力されません。

A: libseccomp2 を更新しましょう. container 側でなく host 側で.

メモ