@@ -32,7 +32,7 @@ expects the secrets in a different location.
3232To run the ` cisagov/scanner ` image via Docker:
3333
3434``` console
35- docker run cisagov/scanner:1.3.2
35+ docker run cisagov/scanner:1.3.3
3636```
3737
3838### Running with Docker Compose ###
@@ -45,7 +45,7 @@ docker run cisagov/scanner:1.3.2
4545
4646 services :
4747 scanner :
48- image : cisagov/scanner:1.3.2
48+ image : cisagov/scanner:1.3.3
4949 volumes :
5050 - type : bind
5151 source : <your_log_dir>
@@ -89,7 +89,7 @@ environment variables. See the
8989
9090 services:
9191 scanner:
92- image: cisagov/scanner:1.3.2
92+ image: cisagov/scanner:1.3.3
9393 volumes:
9494 - type: bind
9595 source: <your_log_dir>
@@ -126,7 +126,7 @@ environment variables. See the
1261261. Pull the new image :
127127
128128 ` ` ` console
129- docker pull cisagov/scanner:1.3.2
129+ docker pull cisagov/scanner:1.3.3
130130 ` ` `
131131
1321321. Recreate and run the container by following the [previous instructions](#running-with-docker).
@@ -136,11 +136,11 @@ environment variables. See the
136136The images of this container are tagged with [semantic
137137versions](https://semver.org) of the underlying example project that they
138138containerize. It is recommended that most users use a version tag (e.g.
139- ` :1.3.2 ` ).
139+ ` :1.3.3 ` ).
140140
141141| Image:tag | Description |
142142|-----------|-------------|
143- |`cisagov/scanner:1.3.2 `| An exact release version. |
143+ |`cisagov/scanner:1.3.3 `| An exact release version. |
144144|`cisagov/scanner:1.3`| The most recent release matching the major and minor version numbers. |
145145|`cisagov/scanner:1`| The most recent release matching the major version number. |
146146|`cisagov/scanner:edge` | The most recent image built from a merge into the `develop` branch of this repository. |
@@ -200,8 +200,8 @@ Build the image locally using this git repository as the [build context](https:/
200200
201201` ` ` console
202202docker build \
203- --build-arg VERSION=1.3.2 \
204- --tag cisagov/scanner:1.3.2 \
203+ --build-arg VERSION=1.3.3 \
204+ --tag cisagov/scanner:1.3.3 \
205205 https://github.com/cisagov/scanner.git#develop
206206` ` `
207207
@@ -231,9 +231,9 @@ Docker:
231231 docker buildx build \
232232 --file Dockerfile-x \
233233 --platform linux/amd64 \
234- --build-arg VERSION=1.3.2 \
234+ --build-arg VERSION=1.3.3 \
235235 --output type=docker \
236- --tag cisagov/scanner:1.3.2 .
236+ --tag cisagov/scanner:1.3.3 .
237237 ` ` `
238238
239239# # Contributing ##
0 commit comments