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
stale-issue-message: 'This issue is stale because it has been open 90 days with no activity. This issue will be closed in 30 days unless new comments are made or the stale label is removed. To skip these checks, apply the "lifecycle/frozen" label.'
19
+
stale-pr-message: 'This PR is stale because it has been open 90 days with no activity. This PR will be closed in 30 days unless new comments are made or the stale label is removed. To skip these checks, apply the "lifecycle/frozen" label.'
20
+
stale-issue-label: 'lifecycle/stale'
21
+
stale-pr-label: 'lifecycle/stale'
22
+
exempt-issue-labels: 'lifecycle/frozen'
23
+
exempt-pr-labels: 'lifecycle/frozen'
24
+
days-before-stale: 90
25
+
close-issue-message: 'This issue was automatically closed due to inactivity.'
26
+
close-pr-message: 'This pull request was automatically closed due to inactivity.'
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ cAdvisor has native support for [Docker](https://github.com/docker/docker) conta
11
11
To quickly tryout cAdvisor on your machine with Docker, we have a Docker image that includes everything you need to get started. You can run a single cAdvisor to monitor the whole machine. Simply run:
12
12
13
13
```
14
-
VERSION=v0.49.1 # use the latest release version from https://github.com/google/cadvisor/releases
14
+
VERSION=v0.53.0 # use the latest release version from https://github.com/google/cadvisor/releases
15
15
sudo docker run \
16
16
--volume=/:/rootfs:ro \
17
17
--volume=/var/run:/var/run:ro \
@@ -23,7 +23,7 @@ sudo docker run \
23
23
--name=cadvisor \
24
24
--privileged \
25
25
--device=/dev/kmsg \
26
-
gcr.io/cadvisor/cadvisor:$VERSION
26
+
ghcr.io/google/cadvisor:$VERSION # for versions prior to v0.53.0, use gcr.io/cadvisor/cadvisor instead
27
27
```
28
28
29
29
cAdvisor is now running (in the background) on `http://localhost:8080`. The setup includes directories with Docker state cAdvisor needs to observe.
0 commit comments