Skip to content

Commit cb7fd41

Browse files
authored
Merge pull request #108 from cisagov/improvement/use-latest-domain-scan
Use the latest cisagov/domain scan code
2 parents 9386b50 + bfbcead commit cb7fd41

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

README.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ expects the secrets in a different location.
3434
To run the `cisagov/gatherer` image via Docker:
3535

3636
```console
37-
docker run cisagov/gatherer:1.5.15
37+
docker run cisagov/gatherer:1.5.16
3838
```
3939

4040
### Running with Docker Compose ###
@@ -47,7 +47,7 @@ docker run cisagov/gatherer:1.5.15
4747

4848
services:
4949
gatherer:
50-
image: cisagov/gatherer:1.5.15
50+
image: cisagov/gatherer:1.5.16
5151
volumes:
5252
- type: bind
5353
source: <your_output_dir>
@@ -93,7 +93,7 @@ environment variables. See the
9393
9494
services:
9595
gatherer:
96-
image: cisagov/gatherer:1.5.15
96+
image: cisagov/gatherer:1.5.16
9797
volumes:
9898
- type: bind
9999
source: <your_output_dir>
@@ -130,7 +130,7 @@ environment variables. See the
130130
1. Pull the new image:
131131

132132
```console
133-
docker pull cisagov/gatherer:1.5.15
133+
docker pull cisagov/gatherer:1.5.16
134134
```
135135

136136
1. Recreate and run the container by following the [previous instructions](#running-with-docker).
@@ -140,11 +140,11 @@ environment variables. See the
140140
The images of this container are tagged with [semantic
141141
versions](https://semver.org) of the underlying gatherer project that they
142142
containerize. It is recommended that most users use a version tag (e.g.
143-
`:1.5.15`).
143+
`:1.5.16`).
144144

145145
| Image:tag | Description |
146146
|-----------|-------------|
147-
|`cisagov/gatherer:1.5.15`| An exact release version. |
147+
|`cisagov/gatherer:1.5.16`| An exact release version. |
148148
|`cisagov/gatherer:1.5`| The most recent release matching the major and minor version numbers. |
149149
|`cisagov/gatherer:1`| The most recent release matching the major version number. |
150150
|`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:/
207207

208208
```console
209209
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 \
212212
https://github.com/cisagov/gatherer.git#develop
213213
```
214214

@@ -238,9 +238,9 @@ Docker:
238238
docker buildx build \
239239
--file Dockerfile-x \
240240
--platform linux/amd64 \
241-
--build-arg VERSION=1.5.15 \
241+
--build-arg VERSION=1.5.16 \
242242
--output type=docker \
243-
--tag cisagov/gatherer:1.5.15 .
243+
--tag cisagov/gatherer:1.5.16 .
244244
```
245245

246246
## Contributing ##

src/version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.5.15"
1+
__version__ = "1.5.16"

0 commit comments

Comments
 (0)