Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions book/src/framework/components/troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ This can happen due to `Docker Desktop` updates, the issue is that the symlink t

#### Solution

Make sure you are not using `containerd` to store or pull images, see the [issue](https://github.com/google/cadvisor/issues/2838#issuecomment-2966600885)

Disable and enable the option `Allow the default Docker socket to be used` again to relink it properly.

![cadvisor_socket.png](../images/cadvisor_socket.png)
1 change: 1 addition & 0 deletions framework/.changeset/v0.15.19.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- add troubleshooting for containerd and cadvisor
2 changes: 1 addition & 1 deletion framework/observability/compose/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ services:
container_name: cadvisor
ports:
- '8085:8080'
cgroup: host
volumes:
- /:/rootfs:ro
- /var/run:/var/run:ro
- /sys:/sys:ro
- /var/lib/docker/:/var/lib/docker:ro # Docker container data
- /var/run/docker.sock:/var/run/docker.sock
Expand Down
Loading