From fa989b8f10f5edec3afc2af800ab428f5d1dbd6d Mon Sep 17 00:00:00 2001 From: Deon George Date: Sat, 24 May 2025 00:24:20 +1000 Subject: [PATCH] Remove MEMCACHED startup, since it is no longer included in the container --- docker/init-docker | 7 ------- 1 file changed, 7 deletions(-) diff --git a/docker/init-docker b/docker/init-docker index a4bb1f7f..171ada97 100755 --- a/docker/init-docker +++ b/docker/init-docker @@ -7,7 +7,6 @@ php=${PHP_DIR:-/app} composer=${COMPOSER_HOME:-/var/cache/composer} SITE_USER=${SITE_USER:-www-data} -MEMCACHED_START=${MEMCACHED_START:-FALSE} RUN_USER=$(id -u) [ "${RUN_USER}" = "0" ] && USE_SU=1 @@ -40,12 +39,6 @@ echo "* Started with [$@]" # Run any container setup [ -x /sbin/init-container ] && /sbin/init-container -# General Setup -if [ -x /usr/bin/memcached -a "${MEMCACHED_START}" == "TRUE" ]; then - echo "* Starting MEMCACHED..." - /usr/bin/memcached -d -P /run/memcached/memcached.pid -u memcached -fi - # Laravel Specific if [ -r artisan -a -e ${php}/.env ]; then echo "* Laravel Setup..."