You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Change GitHub action of container build so that it is only triggered
when pushing into main and not for every push in a MR. Also a manual
build is now possible.
The instructions were added to the README.
Copy file name to clipboardExpand all lines: README.md
+27-1Lines changed: 27 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,8 @@ Probtest is a suite of python scripts to test various aspects of weather and cli
5
5
## Table of contents
6
6
1.[Commands](#commands)
7
7
2.[Quick start guide](#quick-start-guide)
8
-
3.[Developing in probtest](#developing-in-probtest)
8
+
3.[Developing probtest](#developing-probtest)
9
+
4.[Probtest container](#probtest-container)
9
10
10
11
## Commands
11
12
@@ -275,3 +276,28 @@ actually committing:
275
276
```console
276
277
pre-commit run --all-files
277
278
```
279
+
280
+
## Probtest Container
281
+
282
+
Prebuilt Docker images for the latest Probtest releases are available on Docker Hub: [c2sm/probtest](https://hub.docker.com/r/c2sm/probtest/tags)
283
+
284
+
### Build the Probtest Container via GitHub Actions
285
+
286
+
You can also build the Probtest Docker image yourself using the GitHub Actions workflow defined in [`build-container.yml`](.github/workflows/build-container.yml).
287
+
288
+
#### Steps:
289
+
290
+
1. Navigate to the `Actions` tab of this repository.
291
+
2. Select the `Deploy image to DockerHub and GitHub Release` workflow from the list.
292
+
3. Click the `Run workflow` button (top-right) and confirm.
293
+
4. Wait for the workflow to complete (approximately 50 minutes).
294
+
5. Once completed, open the workflow run and scroll down to the `Artifacts` section.
295
+
6. Download the `probtest_image.tar` artifact.
296
+
297
+
#### Load the Image into Docker
298
+
299
+
To load the downloaded image into your local Docker installation, run:
0 commit comments