url query parameters

This commit is contained in:
Florian Hübner 2023-11-12 21:02:18 +01:00
parent 1b898dbc70
commit 01d33436ac

View file

@ -35,3 +35,9 @@ Notice that there is an environment variable named WATCHTOWER_HTTP_API_TOKEN. To
```bash
curl -H "Authorization: Bearer mytoken" localhost:8080/v1/update
```
To update only specific images, the image names can be provided as url query parameters.
```bash
curl -H "Authorization: Bearer mytoken" localhost:8080/v1/update?image=foo/bar,foo/baz
```