-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtagwatch.example.yml
38 lines (35 loc) · 1 KB
/
tagwatch.example.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
registries:
- &docker_hub
auth: true
# Uncomment below to use your Docker Hub account instead of anonymous access
# username: <username>
# password: <token>
auth_url: "https://auth.docker.io/token?service=registry.docker.io"
base_url: "https://registry.hub.docker.com/v2/"
- &gcr
auth: false
base_url: "https://gcr.io/v2/"
default: &default
watch_new: true
registry: *docker_hub
arch: "amd64"
# Configures which tags of which repositories and registries should appear in the generated feed.
# Note that "official" images on Docker Hub should be configured as `library/...` (e.g. library/nginx, library/debian).
tagwatch:
- <<: *default
repo: library/ubuntu
tags:
- 20\.04
- <<: *default
repo: gitea/gitea
tags:
- ^latest$
- ^1\.15$
- registry: *gcr
arch: "amd64"
repo: distroless/python3-debian12
tags:
- ^nonroot$
# Configures the web server that is serving the generated feed with `tagwatch serve`.
server:
addr: ":8080"