`make DOCKERD_ARGS=--init binary run` should start the daemon with `--init` as flags (with any other "automagically" added ones). Signed-off-by: Vincent Demeester <vincent@sbr.pm>
@@ -43,6 +43,7 @@ DOCKER_ENVS := \
-e DOCKER_REMAP_ROOT \
-e DOCKER_STORAGE_OPTS \
-e DOCKER_USERLANDPROXY \
+ -e DOCKERD_ARGS \
-e TEST_INTEGRATION_DIR \
-e TESTDIRS \
-e TESTFLAGS \
@@ -28,9 +28,9 @@ if [ -n "$DOCKER_PORT" ]; then
listen_port="${ports[-1]}"
fi
-extra_params=""
+extra_params="$DOCKERD_ARGS"
if [ "$DOCKER_REMAP_ROOT" ]; then
- extra_params="--userns-remap $DOCKER_REMAP_ROOT"
+ extra_params="$extra_params --userns-remap $DOCKER_REMAP_ROOT"
args="--debug \