Skip to content

Commit

Permalink
README: Update version to 4.15
Browse files Browse the repository at this point in the history
  • Loading branch information
markgoddard committed Jul 19, 2022
1 parent cae1121 commit 97c5a9a
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# stackhpc/squid:4.4-8
# stackhpc/squid:4.15

- [Introduction](#introduction)
- [Contributing](#contributing)
Expand Down Expand Up @@ -53,13 +53,13 @@ If the above recommendations do not help then [report your issue](../../issues/n
## Installation

```bash
docker pull stackhpc/squid:4.4-8
docker pull stackhpc/squid:4.15
```

Alternatively you can build the image yourself.

```bash
docker build -t stackhpc/squid:4.4-8 github.com/stackhpc/docker-squid
docker build -t stackhpc/squid:4.15 github.com/stackhpc/docker-squid
```

## Quickstart
Expand All @@ -71,7 +71,7 @@ docker run --name squid -d --restart=always \
--publish 3128:3128 \
--volume /srv/docker/squid/log:/var/log/squid \
--volume /srv/docker/squid/cache:/var/spool/squid \
stackhpc/squid:4.4-8
stackhpc/squid:4.15
```

*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/)*
Expand All @@ -85,7 +85,7 @@ docker run --name squid -it --rm \
--publish 3128:3128 \
--volume /srv/docker/squid/log:/var/log/squid \
--volume /srv/docker/squid/cache:/var/spool/squid \
stackhpc/squid:4.4-8 -h
stackhpc/squid:4.15 -h
```

## Persistence
Expand All @@ -110,7 +110,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 \
stackhpc/squid:4.4-8
stackhpc/squid:4.15
```

To reload the Squid configuration on a running instance you can send the `HUP` signal to the container.
Expand Down Expand Up @@ -158,7 +158,7 @@ To upgrade to newer releases:
1. Download the updated Docker image:

```bash
docker pull stackhpc/squid:4.4-8
docker pull stackhpc/squid:4.15
```

2. Stop the currently running image:
Expand All @@ -178,7 +178,7 @@ To upgrade to newer releases:
```bash
docker run -name squid -d \
[OPTIONS] \
stackhpc/squid:4.4-8
stackhpc/squid:4.15
```

## Shell Access
Expand Down

0 comments on commit 97c5a9a

Please sign in to comment.