Closed
Description
Expected behavior
Adding the following docker configuration should add --init
to the dockerd daemon and mount tini to /dev/init
.
{
"init" : true
}
Actual behavior
No --init
flag on the dockerd daemon, no /dev/init
mounted into containers
Information
I'm running docker 1.13.1 on macOS 10.12.3, a fresh install of docker for mac
Steps to reproduce the behavior
- Start docker for mac
- Run
docker run -it --rm alpine ls /dev
, and there is noinit
entry - Run
docker run -it --rm --pid host -e COLUMNS=200 alpine /bin/sh -c "ps aux | grep dockerd"
, and there is no--init
flag added
Configured as indicated by moby/moby#26941 moby/moby#26061, and moby/moby#28037