0
0

More than 1 year has passed since last update.

コンテナでsupervisor使用時に「INFO reaped unknown pid XXX (terminated by SIGKILL)」 で困っている場合

Posted at
INFO reaped unknown pid 1702 (terminated by SIGKILL)

コンテナ内で supervisor を使用していると、このようなログが大量に出力されていた。

コンテナ実行時に --init オプションを付けると解決するかもしれない。

Docker ( --init )

docker run --init --name web alpine:latest

Docker Compose ( init: true )

version: "3.9"
services:
  web:
    image: alpine:latest
    init: true

0
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
0
0