Skip to content

Instantly share code, notes, and snippets.

@rainrisa
Created October 22, 2022 01:36
Show Gist options
  • Save rainrisa/cf2cb3ffa99435db21823d2c39ae620a to your computer and use it in GitHub Desktop.
Save rainrisa/cf2cb3ffa99435db21823d2c39ae620a to your computer and use it in GitHub Desktop.
running docker on arch wsl
WARN[2022-10-22T08:25:01.363088467+07:00] grpc: addrConn.createTransport failed to connect to {unix:///var/run/docker/containerd/containerd.sock <nil> 0 <nil>}. Err :connection error: desc = "transport: error while dialing: dial unix:///var/run/docker/containerd/containerd.sock: timeout". Reconnecting... module=grpc
1. Kill dockerd process
ps -aux | grep dockerd
kill -9 [dockerd process_id]
2. Start dockerd process
sudo dockerd
3. Move the process in the background
bg %1
Reference:
- https://github.com/docker/for-linux/issues/517#issuecomment-542129395
- https://stackoverflow.com/a/73782498
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment