1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【Docker】"apparmor_parser": executable file not found in $PATH エラー @ Armbian

Posted at

Intel ベースの macOS や Ubuntu で正常にビルド & 起動する Dockerfile を、CPU が ARM64 の Debian ベースマシンでビルドすると「error: exec: "apparmor_parser": executable file not found in $PATH」エラーが発生する。

【エラーログ】リポジトリのルートにDockerfileのあるリポジトリからDockerイメージの作成
$ docker build -t sample:local https://github.com/<your name>/<your repo>.git
Sending build context to Docker daemon  5.516MB
Step 1/15 : FROM golang:1.18-alpine AS build_base
 ---> 3cb4fa46c0ae
Step 2/15 : RUN apk add --no-cache git gcc ca-certificates libc-dev
 ---> Running in 02db750926f2
AppArmor enabled on system but the docker-default profile could not be loaded: running `apparmor_parser apparmor_parser --version` failed with output: 
error: exec: "apparmor_parser": executable file not found in $PATH
  • マシン: NanoPi Neo2
  • OS: Armbian (22.05.3, Bullseye) aarch64
  • Kernel: 5.15.48-sunxi64

TL; DR (今北産業)

  1. AppArmor は、SELinux に似たプログラムの挙動を制限するための Linux のセキュリティ・モジュールの 1 つ。
  2. Intel/ARM 関係なく、ディストロによっては apparmor のインストールが別途必要。
    特に apt install docker.io で Docker のランタイムのみインストールした場合などには必須のモジュール。
  3. apt install apparmor apparmor-utils でインストールする。

参考文献

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?