From d606b8076f8c41b4943b5f3e24caaca25e5f1add Mon Sep 17 00:00:00 2001 From: ghoussard <35272857+ghoussard@users.noreply.github.com> Date: Thu, 5 Nov 2020 07:49:20 +0100 Subject: [PATCH] docs(troubleshooting): update dumb-init version (#6585) The latest released version of dumb-init is 1.2.2. Binary naming has changed: `dumb-init_x.x.x_amd64` became `dumb-init_x.x.x_x86_64`. --- docs/troubleshooting.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/troubleshooting.md b/docs/troubleshooting.md index f4d35c33..ccb6514d 100644 --- a/docs/troubleshooting.md +++ b/docs/troubleshooting.md @@ -272,7 +272,7 @@ RUN apt-get update \ # If running Docker >= 1.13.0 use docker run's --init arg to reap zombie processes, otherwise # uncomment the following lines to have `dumb-init` as PID 1 -# ADD https://github.com/Yelp/dumb-init/releases/download/v1.2.0/dumb-init_1.2.0_amd64 /usr/local/bin/dumb-init +# ADD https://github.com/Yelp/dumb-init/releases/download/v1.2.2/dumb-init_1.2.2_x86_64 /usr/local/bin/dumb-init # RUN chmod +x /usr/local/bin/dumb-init # ENTRYPOINT ["dumb-init", "--"]