@@ -34,7 +34,7 @@ expects the secrets in a different location.
34
34
To run the ` cisagov/gatherer ` image via Docker:
35
35
36
36
``` console
37
- docker run cisagov/gatherer:1.5.15
37
+ docker run cisagov/gatherer:1.5.16
38
38
```
39
39
40
40
### Running with Docker Compose ###
@@ -47,7 +47,7 @@ docker run cisagov/gatherer:1.5.15
47
47
48
48
services :
49
49
gatherer :
50
- image : cisagov/gatherer:1.5.15
50
+ image : cisagov/gatherer:1.5.16
51
51
volumes :
52
52
- type : bind
53
53
source : <your_output_dir>
@@ -93,7 +93,7 @@ environment variables. See the
93
93
94
94
services:
95
95
gatherer:
96
- image: cisagov/gatherer:1.5.15
96
+ image: cisagov/gatherer:1.5.16
97
97
volumes:
98
98
- type: bind
99
99
source: <your_output_dir>
@@ -130,7 +130,7 @@ environment variables. See the
130
130
1. Pull the new image :
131
131
132
132
` ` ` console
133
- docker pull cisagov/gatherer:1.5.15
133
+ docker pull cisagov/gatherer:1.5.16
134
134
` ` `
135
135
136
136
1. Recreate and run the container by following the [previous instructions](#running-with-docker).
@@ -140,11 +140,11 @@ environment variables. See the
140
140
The images of this container are tagged with [semantic
141
141
versions](https://semver.org) of the underlying gatherer project that they
142
142
containerize. It is recommended that most users use a version tag (e.g.
143
- ` :1.5.15 ` ).
143
+ ` :1.5.16 ` ).
144
144
145
145
| Image:tag | Description |
146
146
|-----------|-------------|
147
- |`cisagov/gatherer:1.5.15 `| An exact release version. |
147
+ |`cisagov/gatherer:1.5.16 `| An exact release version. |
148
148
|`cisagov/gatherer:1.5`| The most recent release matching the major and minor version numbers. |
149
149
|`cisagov/gatherer:1`| The most recent release matching the major version number. |
150
150
|`cisagov/gatherer:edge` | The most recent image built from a merge into the `develop` branch of this repository. |
@@ -207,8 +207,8 @@ Build the image locally using this git repository as the [build context](https:/
207
207
208
208
` ` ` console
209
209
docker build \
210
- --build-arg VERSION=1.5.15 \
211
- --tag cisagov/gatherer:1.5.15 \
210
+ --build-arg VERSION=1.5.16 \
211
+ --tag cisagov/gatherer:1.5.16 \
212
212
https://github.com/cisagov/gatherer.git#develop
213
213
` ` `
214
214
@@ -238,9 +238,9 @@ Docker:
238
238
docker buildx build \
239
239
--file Dockerfile-x \
240
240
--platform linux/amd64 \
241
- --build-arg VERSION=1.5.15 \
241
+ --build-arg VERSION=1.5.16 \
242
242
--output type=docker \
243
- --tag cisagov/gatherer:1.5.15 .
243
+ --tag cisagov/gatherer:1.5.16 .
244
244
` ` `
245
245
246
246
# # Contributing ##
0 commit comments