From 192cd14a334839c7ebdc76d9c054b319ca52a095 Mon Sep 17 00:00:00 2001 From: Sameer Naik Date: Sat, 6 Jul 2019 13:24:57 +0530 Subject: [PATCH] release 1.5.6-2 --- README.md | 12 ++++++------ VERSION | 2 +- docker-compose.yml | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 48ab6d2..fc2a499 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ > > Active maintenance of the image has been halted. Your [contributions](#contributing) are welcome. -# sameersbn/memcached:1.5.6-1 +# sameersbn/memcached:1.5.6-2 - [Introduction](#introduction) - [Contributing](#contributing) @@ -52,7 +52,7 @@ Automated builds of the image are available on [Dockerhub](https://hub.docker.co > **Note**: Builds are also available on [Quay.io](https://quay.io/repository/sameersbn/memcached) ```bash -docker pull sameersbn/memcached:1.5.6-1 +docker pull sameersbn/memcached:1.5.6-2 ``` Alternatively you can build the image yourself. @@ -68,7 +68,7 @@ Start Memcached using: ```bash docker run --name memcached -d --restart=always \ --publish 11211:11211 \ - sameersbn/memcached:1.5.6-1 + sameersbn/memcached:1.5.6-2 ``` *Alternatively, you can use the sample [docker-compose.yml](docker-compose.yml) file to start the container using [Docker Compose](https://docs.docker.com/compose/)* @@ -80,7 +80,7 @@ You can customize the launch command of Memcached server by specifying arguments ```bash docker run --name memcached -it --rm \ --publish 11211:11211 \ - sameersbn/memcached:1.5.6-1 -h + sameersbn/memcached:1.5.6-2 -h ``` # Maintenance @@ -92,7 +92,7 @@ To upgrade to newer releases: 1. Download the updated Docker image: ```bash - docker pull sameersbn/memcached:1.5.6-1 + docker pull sameersbn/memcached:1.5.6-2 ``` 2. Stop the currently running image: @@ -112,7 +112,7 @@ To upgrade to newer releases: ```bash docker run -name memcached -d \ [OPTIONS] \ - sameersbn/memcached:1.5.6-1 + sameersbn/memcached:1.5.6-2 ``` ## Shell Access diff --git a/VERSION b/VERSION index 6581676..e87486f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.5.6-1 +1.5.6-2 diff --git a/docker-compose.yml b/docker-compose.yml index ed20e37..799f2a9 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,5 +1,5 @@ Memcached: - image: sameersbn/memcached:1.5.6-1 + image: sameersbn/memcached:1.5.6-2 ports: - "11211:11211" restart: always