diff --git a/README.md b/README.md
index e2cc062..59d8f86 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
 [![Circle CI](https://circleci.com/gh/sameersbn/docker-squid.svg?style=shield)](https://circleci.com/gh/sameersbn/docker-squid) [![Docker Repository on Quay.io](https://quay.io/repository/sameersbn/squid/status "Docker Repository on Quay.io")](https://quay.io/repository/sameersbn/squid)
 
-# sameersbn/squid:3.5.27-1
+# sameersbn/squid:3.5.27-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/squid)
 
 ```bash
-docker pull sameersbn/squid:3.5.27-1
+docker pull sameersbn/squid:3.5.27-2
 ```
 
 Alternatively you can build the image yourself.
@@ -69,7 +69,7 @@ Start Squid using:
 docker run --name squid -d --restart=always \
   --publish 3128:3128 \
   --volume /srv/docker/squid/cache:/var/spool/squid \
-  sameersbn/squid:3.5.27-1
+  sameersbn/squid:3.5.27-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/)*
@@ -82,7 +82,7 @@ You can customize the launch command of the Squid server by specifying arguments
 docker run --name squid -it --rm \
   --publish 3128:3128 \
   --volume /srv/docker/squid/cache:/var/spool/squid \
-  sameersbn/squid:3.5.27-1 -h
+  sameersbn/squid:3.5.27-2 -h
 ```
 
 ## Persistence
@@ -107,7 +107,7 @@ docker run --name squid -d --restart=always \
   --publish 3128:3128 \
   --volume /path/to/squid.conf:/etc/squid/squid.conf \
   --volume /srv/docker/squid/cache:/var/spool/squid \
-  sameersbn/squid:3.5.27-1
+  sameersbn/squid:3.5.27-2
 ```
 
 To reload the Squid configuration on a running instance you can send the `HUP` signal to the container.
@@ -155,7 +155,7 @@ To upgrade to newer releases:
   1. Download the updated Docker image:
 
   ```bash
-  docker pull sameersbn/squid:3.5.27-1
+  docker pull sameersbn/squid:3.5.27-2
   ```
 
   2. Stop the currently running image:
@@ -175,7 +175,7 @@ To upgrade to newer releases:
   ```bash
   docker run -name squid -d \
     [OPTIONS] \
-    sameersbn/squid:3.5.27-1
+    sameersbn/squid:3.5.27-2
   ```
 
 ## Shell Access
diff --git a/VERSION b/VERSION
index 48c9799..36daaac 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-3.5.27-1
+3.5.27-2
diff --git a/docker-compose.yml b/docker-compose.yml
index 83561d3..fabba23 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -1,5 +1,5 @@
 Squid:
-  image: sameersbn/squid:3.5.27-1
+  image: sameersbn/squid:3.5.27-2
   ports:
     - "3128:3128"
   volumes:
diff --git a/kubernetes/pod.yml b/kubernetes/pod.yml
index 1ed7fbb..58a7e0c 100644
--- a/kubernetes/pod.yml
+++ b/kubernetes/pod.yml
@@ -7,7 +7,7 @@ metadata:
 spec:
   containers:
     - name: squid
-      image: sameersbn/squid:3.5.27-1
+      image: sameersbn/squid:3.5.27-2
       ports:
         - containerPort: 3128
           protocol: TCP