From bc40bc502781ccf12e357b3383b5af1e56aa9845 Mon Sep 17 00:00:00 2001 From: "Hongli Lai (Phusion)" Date: Thu, 6 Feb 2014 12:35:24 +0100 Subject: [PATCH] Update website --- index.html | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/index.html b/index.html index 6d01e18..7f92512 100644 --- a/index.html +++ b/index.html @@ -281,9 +281,9 @@ RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
### In memcached.sh (make sure this file is chmod +x):
 #!/bin/sh
-# `chpst` is part of running. `chpst -u memcache` runs the given command
-# as the user `memcache`. If you omit this, the command will be run as root.
-exec chpst -u memcache /usr/bin/memcached >>/var/log/memcached.log 2>&1
+# `/sbin/setuser memcache` runs the given command as the user `memcache`.
+# If you omit that part, the command will be run as root.
+exec /sbin/setuser memcache /usr/bin/memcached >>/var/log/memcached.log 2>&1
 
 ### In Dockerfile:
 RUN mkdir /etc/service/memcached
@@ -294,9 +294,8 @@ ADD memcached.sh /etc/service/memcached/run

More documentation

This website only covers the basics. Please refer to the Github repository for more documentation. Topics include:

Having problems? Want to participate in development? Please post a message at the discussion forum.