1.6.5-debian-10-r18 release

This commit is contained in:
Bitnami Bot 2020-04-29 13:34:24 +00:00
parent 07bc8dd3c8
commit d815d7af4e
2 changed files with 4 additions and 4 deletions

View File

@ -19,7 +19,7 @@ RUN ln -s /opt/bitnami/scripts/memcached/run.sh /run.sh
COPY rootfs / COPY rootfs /
RUN /opt/bitnami/scripts/memcached/postunpack.sh RUN /opt/bitnami/scripts/memcached/postunpack.sh
ENV BITNAMI_APP_NAME="memcached" \ ENV BITNAMI_APP_NAME="memcached" \
BITNAMI_IMAGE_VERSION="1.6.5-debian-10-r17" \ BITNAMI_IMAGE_VERSION="1.6.5-debian-10-r18" \
PATH="/opt/bitnami/memcached/bin:/opt/bitnami/common/bin:$PATH" PATH="/opt/bitnami/memcached/bin:/opt/bitnami/common/bin:$PATH"
EXPOSE 11211 EXPOSE 11211

View File

@ -44,7 +44,7 @@ Non-root container images add an extra layer of security and are generally recom
Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/).
* [`1-debian-10`, `1.6.5-debian-10-r17`, `1`, `1.6.5`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-memcached/blob/1.6.5-debian-10-r17/1/debian-10/Dockerfile) * [`1-debian-10`, `1.6.5-debian-10-r18`, `1`, `1.6.5`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-memcached/blob/1.6.5-debian-10-r18/1/debian-10/Dockerfile)
Subscribe to project updates by watching the [bitnami/memcached GitHub repo](https://github.com/bitnami/bitnami-docker-memcached). Subscribe to project updates by watching the [bitnami/memcached GitHub repo](https://github.com/bitnami/bitnami-docker-memcached).
@ -231,7 +231,7 @@ services:
Passing extra command-line flags to the Memcached service command is possible by adding them as arguments to *run.sh* script: Passing extra command-line flags to the Memcached service command is possible by adding them as arguments to *run.sh* script:
```console ```console
$ docker run --name memcached bitnami/memcached:latest /opt/bitnami/scripts/run.sh -vvv $ docker run --name memcached bitnami/memcached:latest /opt/bitnami/scripts/memcached/run.sh -vvv
``` ```
Alternatively, modify the [`docker-compose.yml`](https://github.com/bitnami/bitnami-docker-memcached/blob/master/docker-compose.yml) file present in this repository: Alternatively, modify the [`docker-compose.yml`](https://github.com/bitnami/bitnami-docker-memcached/blob/master/docker-compose.yml) file present in this repository:
@ -240,7 +240,7 @@ Alternatively, modify the [`docker-compose.yml`](https://github.com/bitnami/bitn
services: services:
memcached: memcached:
... ...
command: /opt/bitnami/scripts/run.sh -vvv command: /opt/bitnami/scripts/memcached/run.sh -vvv
... ...
``` ```