From 9920d9d834bb7ccfcf38faec68665a5f3a01a403 Mon Sep 17 00:00:00 2001 From: Jens Diemer Date: Tue, 29 Nov 2016 12:05:34 +0100 Subject: [PATCH] RUN chmod +x /etc/service/memcached/run is needed. otherwise i get the error: ``` fatal: unable to start ./run: access denied ``` --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 09a6fab..cc49d3f 100644 --- a/README.md +++ b/README.md @@ -170,6 +170,7 @@ In `Dockerfile`: RUN mkdir /etc/service/memcached ADD memcached.sh /etc/service/memcached/run + RUN chmod +x /etc/service/memcached/run Note that the shell script must run the daemon **without letting it daemonize/fork it**. Usually, daemons provide a command line flag or a config file option for that.