From b46eb7f3d9fe1693c370a701a13d6879649f20d3 Mon Sep 17 00:00:00 2001 From: Justin Cormack Date: Thu, 22 Sep 2016 13:39:10 +0100 Subject: [PATCH] Enable local service Files in `/etc/local.d/` will be executed: If a file in this directory is executable and it has a .start extension, it will be run when the local service is started. If a file is executable and it has a .stop extension, it will be run when the local service is stopped. Signed-off-by: Justin Cormack --- alpine/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/alpine/Dockerfile b/alpine/Dockerfile index f00f4ae95..f2777569a 100644 --- a/alpine/Dockerfile +++ b/alpine/Dockerfile @@ -35,6 +35,7 @@ RUN \ rc-update add fsck && \ rc-update add root && \ rc-update add crond && \ + rc-update add local && \ rc-update add localmount && \ rc-update add docker default && \ rc-update add proxy default && \