diff --git a/README.md b/README.md index 193d61c..a7c5494 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-22 +# sameersbn/squid:3.3.8-23 - [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-22 +docker pull sameersbn/squid:3.3.8-23 ``` 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-22 + sameersbn/squid:3.3.8-23 ``` *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-22 -h + sameersbn/squid:3.3.8-23 -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-22 + sameersbn/squid:3.3.8-23 ``` 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-22 + docker pull sameersbn/squid:3.3.8-23 ``` 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-22 + sameersbn/squid:3.3.8-23 ``` ## Shell Access diff --git a/VERSION b/VERSION index c566704..690e25f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.3.8-22 +3.3.8-23 diff --git a/docker-compose.yml b/docker-compose.yml index 3c6bcf6..98ea7b0 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,5 +1,5 @@ Squid: - image: sameersbn/squid:3.3.8-22 + image: sameersbn/squid:3.3.8-23 ports: - "3128:3128" volumes: diff --git a/kubernetes/pod.yml b/kubernetes/pod.yml index edef13d..7259b3c 100644 --- a/kubernetes/pod.yml +++ b/kubernetes/pod.yml @@ -7,7 +7,7 @@ metadata: spec: containers: - name: squid - image: sameersbn/squid:3.3.8-22 + image: sameersbn/squid:3.3.8-23 ports: - containerPort: 3128 protocol: TCP