From 1c4ab23dabba55fa776a07ebc2b15c9c77c1b30a Mon Sep 17 00:00:00 2001 From: Sameer Naik Date: Sun, 17 Apr 2016 11:28:14 +0530 Subject: [PATCH] release 3.3.8-12 --- README.md | 14 +++++++------- VERSION | 2 +- docker-compose.yml | 2 +- kubernetes/pod.yml | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 27d27b8..9262c8b 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.3.8-11 +# sameersbn/squid:3.3.8-12 - [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.3.8-11 +docker pull sameersbn/squid:3.3.8-12 ``` 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/squid3 \ - sameersbn/squid:3.3.8-11 + sameersbn/squid:3.3.8-12 ``` *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/squid3 \ - sameersbn/squid:3.3.8-11 -h + sameersbn/squid:3.3.8-12 -h ``` ## Persistence @@ -107,7 +107,7 @@ docker run --name squid -d --restart=always \ --publish 3128:3128 \ --volume /path/to/squid.conf:/etc/squid3/squid.conf \ --volume /srv/docker/squid/cache:/var/spool/squid3 \ - sameersbn/squid:3.3.8-11 + sameersbn/squid:3.3.8-12 ``` 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.3.8-11 + docker pull sameersbn/squid:3.3.8-12 ``` 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.3.8-11 + sameersbn/squid:3.3.8-12 ``` ## Shell Access diff --git a/VERSION b/VERSION index 57a547a..9358690 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.3.8-11 +3.3.8-12 diff --git a/docker-compose.yml b/docker-compose.yml index 13320c4..fd0d3b8 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,5 +1,5 @@ Squid: - image: sameersbn/squid:3.3.8-11 + image: sameersbn/squid:3.3.8-12 ports: - "3128:3128" volumes: diff --git a/kubernetes/pod.yml b/kubernetes/pod.yml index 4d329f9..92833e4 100644 --- a/kubernetes/pod.yml +++ b/kubernetes/pod.yml @@ -7,7 +7,7 @@ metadata: spec: containers: - name: squid - image: sameersbn/squid:3.3.8-11 + image: sameersbn/squid:3.3.8-12 ports: - containerPort: 3128 protocol: TCP