Skip to content

Commit 924b085

Browse files
author
Sameer Naik
committed
Merge branch 'release-3.5.27-2'
2 parents f971330 + 4a70857 commit 924b085

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![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)
22

3-
# sameersbn/squid:3.5.27-1
3+
# sameersbn/squid:3.5.27-2
44

55
- [Introduction](#introduction)
66
- [Contributing](#contributing)
@@ -52,7 +52,7 @@ Automated builds of the image are available on [Dockerhub](https://hub.docker.co
5252
> **Note**: Builds are also available on [Quay.io](https://quay.io/repository/sameersbn/squid)
5353
5454
```bash
55-
docker pull sameersbn/squid:3.5.27-1
55+
docker pull sameersbn/squid:3.5.27-2
5656
```
5757

5858
Alternatively you can build the image yourself.
@@ -69,7 +69,7 @@ Start Squid using:
6969
docker run --name squid -d --restart=always \
7070
--publish 3128:3128 \
7171
--volume /srv/docker/squid/cache:/var/spool/squid \
72-
sameersbn/squid:3.5.27-1
72+
sameersbn/squid:3.5.27-2
7373
```
7474

7575
*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
8282
docker run --name squid -it --rm \
8383
--publish 3128:3128 \
8484
--volume /srv/docker/squid/cache:/var/spool/squid \
85-
sameersbn/squid:3.5.27-1 -h
85+
sameersbn/squid:3.5.27-2 -h
8686
```
8787

8888
## Persistence
@@ -107,7 +107,7 @@ docker run --name squid -d --restart=always \
107107
--publish 3128:3128 \
108108
--volume /path/to/squid.conf:/etc/squid/squid.conf \
109109
--volume /srv/docker/squid/cache:/var/spool/squid \
110-
sameersbn/squid:3.5.27-1
110+
sameersbn/squid:3.5.27-2
111111
```
112112

113113
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:
155155
1. Download the updated Docker image:
156156

157157
```bash
158-
docker pull sameersbn/squid:3.5.27-1
158+
docker pull sameersbn/squid:3.5.27-2
159159
```
160160

161161
2. Stop the currently running image:
@@ -175,7 +175,7 @@ To upgrade to newer releases:
175175
```bash
176176
docker run -name squid -d \
177177
[OPTIONS] \
178-
sameersbn/squid:3.5.27-1
178+
sameersbn/squid:3.5.27-2
179179
```
180180

181181
## Shell Access

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.5.27-1
1+
3.5.27-2

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Squid:
2-
image: sameersbn/squid:3.5.27-1
2+
image: sameersbn/squid:3.5.27-2
33
ports:
44
- "3128:3128"
55
volumes:

kubernetes/pod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
spec:
88
containers:
99
- name: squid
10-
image: sameersbn/squid:3.5.27-1
10+
image: sameersbn/squid:3.5.27-2
1111
ports:
1212
- containerPort: 3128
1313
protocol: TCP

0 commit comments

Comments
 (0)