@@ -32,7 +32,7 @@ expects the secrets in a different location.
32
32
To run the ` cisagov/scanner ` image via Docker:
33
33
34
34
``` console
35
- docker run cisagov/scanner:1.3.5
35
+ docker run cisagov/scanner:1.3.6
36
36
```
37
37
38
38
### Running with Docker Compose ###
@@ -45,7 +45,7 @@ docker run cisagov/scanner:1.3.5
45
45
46
46
services :
47
47
scanner :
48
- image : cisagov/scanner:1.3.5
48
+ image : cisagov/scanner:1.3.6
49
49
volumes :
50
50
- type : bind
51
51
source : <your_log_dir>
@@ -89,7 +89,7 @@ environment variables. See the
89
89
90
90
services:
91
91
scanner:
92
- image: cisagov/scanner:1.3.5
92
+ image: cisagov/scanner:1.3.6
93
93
volumes:
94
94
- type: bind
95
95
source: <your_log_dir>
@@ -126,7 +126,7 @@ environment variables. See the
126
126
1. Pull the new image :
127
127
128
128
` ` ` console
129
- docker pull cisagov/scanner:1.3.5
129
+ docker pull cisagov/scanner:1.3.6
130
130
` ` `
131
131
132
132
1. Recreate and run the container by following the [previous instructions](#running-with-docker).
@@ -136,11 +136,11 @@ environment variables. See the
136
136
The images of this container are tagged with [semantic
137
137
versions](https://semver.org) of the underlying example project that they
138
138
containerize. It is recommended that most users use a version tag (e.g.
139
- ` :1.3.5 ` ).
139
+ ` :1.3.6 ` ).
140
140
141
141
| Image:tag | Description |
142
142
|-----------|-------------|
143
- |`cisagov/scanner:1.3.5 `| An exact release version. |
143
+ |`cisagov/scanner:1.3.6 `| An exact release version. |
144
144
|`cisagov/scanner:1.3`| The most recent release matching the major and minor version numbers. |
145
145
|`cisagov/scanner:1`| The most recent release matching the major version number. |
146
146
|`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:/
200
200
201
201
` ` ` console
202
202
docker build \
203
- --build-arg VERSION=1.3.5 \
204
- --tag cisagov/scanner:1.3.5 \
203
+ --build-arg VERSION=1.3.6 \
204
+ --tag cisagov/scanner:1.3.6 \
205
205
https://github.com/cisagov/scanner.git#develop
206
206
` ` `
207
207
@@ -231,9 +231,9 @@ Docker:
231
231
docker buildx build \
232
232
--file Dockerfile-x \
233
233
--platform linux/amd64 \
234
- --build-arg VERSION=1.3.5 \
234
+ --build-arg VERSION=1.3.6 \
235
235
--output type=docker \
236
- --tag cisagov/scanner:1.3.5 .
236
+ --tag cisagov/scanner:1.3.6 .
237
237
` ` `
238
238
239
239
# # Contributing ##
0 commit comments