1.4.36-r3 release

Update image to version 1.4.36-r3
This commit is contained in:
Bitnami Bot 2017-05-17 07:57:04 +00:00
parent b8b5696f53
commit 7abd77b21d
4 changed files with 16 additions and 21 deletions

View File

@ -1,3 +0,0 @@
.git/
tests/
*.md

View File

@ -1,23 +1,20 @@
FROM bitnami/minideb-extras:jessie-r15
MAINTAINER Bitnami <containers@bitnami.com>
LABEL maintainer "Bitnami <containers@bitnami.com>"
ENV BITNAMI_IMAGE_VERSION=1.4.36-r2 \
BITNAMI_APP_NAME=memcached \
PATH=/opt/bitnami/memcached/bin:$PATH
# System packages required
RUN install_packages libevent-2.0-5 libsasl2-2 libc6 sasl2-bin
# Install memcached
# Install required system packages and dependencies
RUN install_packages libc6 libevent-2.0-5 libsasl2-2 sasl2-bin
RUN bitnami-pkg unpack memcached-1.4.36-0 --checksum b6925da994329069055808165bae36f8e833e7f78be9b1c8ff494ac0d84d713a
COPY rootfs/ /
COPY rootfs /
ENV BITNAMI_APP_NAME="memcached" \
BITNAMI_IMAGE_VERSION="1.4.36-r3" \
MEMCACHED_PASSWORD="" \
MEMCACHED_USERNAME="root" \
PATH="/opt/bitnami/memcached/bin:$PATH"
ENV MEMCACHED_USERNAME=root \
MEMCACHED_PASSWORD=
EXPOSE 11211
ENTRYPOINT ["/app-entrypoint.sh"]
CMD ["nami", "start", "--foreground", "memcached"]
CMD ["nami","start","--foreground","memcached"]

View File

@ -1,4 +1,5 @@
#!/bin/bash -e
. /opt/bitnami/base/functions
. /opt/bitnami/base/helpers
@ -7,7 +8,7 @@ check_for_updates &
if [[ "$1" == "nami" && "$2" == "start" ]] || [[ "$1" == "/init.sh" ]]; then
nami_initialize memcached
info "Starting memcached..."
info "Starting memcached... "
fi
exec tini -- "$@"

View File

@ -1,4 +1,4 @@
{
"username": "{{$global.env.MEMCACHED_USERNAME}}",
"password": "{{$global.env.MEMCACHED_PASSWORD}}"
}
"password": "{{$global.env.MEMCACHED_PASSWORD}}",
"username": "{{$global.env.MEMCACHED_USERNAME}}"
}