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