1.5.7-r16 release

Removed verbosity from Memcached by default.
This commit is contained in:
Bitnami Bot
2018-05-08 10:19:47 +00:00
parent 929385985c
commit 9ecadbeff0
3 changed files with 3 additions and 11 deletions

View File

@@ -10,7 +10,7 @@ RUN bitnami-pkg unpack memcached-1.5.7-0 --checksum 454bbd745862574d7168d442666f
COPY rootfs /
ENV BITNAMI_APP_NAME="memcached" \
BITNAMI_IMAGE_VERSION="1.5.7-r15" \
BITNAMI_IMAGE_VERSION="1.5.7-r16" \
MEMCACHED_CACHE_SIZE="64" \
MEMCACHED_PASSWORD="" \
MEMCACHED_USERNAME="root" \

View File

@@ -1,4 +1,5 @@
#!/bin/bash
. /opt/bitnami/base/functions
. /opt/bitnami/base/helpers
@@ -16,7 +17,7 @@ if [[ -n $MEMCACHED_PASSWORD ]]; then
export SASL_CONF_PATH="${CONFDIR}"
fi
ARGS="-p 11211 -P ${PIDFILE} -u memcached -v ${EXTRA_OPTIONS} -vv > ${LOGFILE} 2>&1"
ARGS="-p 11211 -P ${PIDFILE} -u memcached -v ${EXTRA_OPTIONS} > ${LOGFILE} 2>&1"
# If container is started as `root` user
if [ $EUID -eq 0 ]; then

View File

@@ -1,9 +0,0 @@
version: '2'
services:
memcached:
image: 'bitnami/memcached:latest'
labels:
kompose.service.type: nodeport
ports:
- '11211:11211'