File tree Expand file tree Collapse file tree 2 files changed +21
-0
lines changed Expand file tree Collapse file tree 2 files changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ This error may indicate:
35
35
running the command again.
36
36
- Your Docker client is attempting to connect to a Docker daemon on a different
37
37
host, and that host is unreachable.
38
+ - You have multiple Docker engine that run on your system (eg. snap & docker-ce).
38
39
39
40
### Check whether Docker is running
40
41
Original file line number Diff line number Diff line change @@ -92,6 +92,26 @@ automatically removed when you uninstall Docker. If you want to start with a
92
92
clean installation, and prefer to clean up any existing data, read the
93
93
[ uninstall Docker Engine] ( #uninstall-docker-engine ) section.
94
94
95
+ #### Uninstall snap version
96
+
97
+ Verify if you have snap version of Docker :
98
+
99
+ ``` console
100
+ snap list | grep docker
101
+ ```
102
+
103
+ If you have this kind of result :
104
+ ``` text
105
+ docker 27.2.0 2963 latest/stable canonical** -
106
+ ```
107
+
108
+ Disable and remove the snap :
109
+ ``` console
110
+ sudo snap disable docker && sudo snap remove docker --purge
111
+ ```
112
+
113
+ Then reboot.
114
+
95
115
## Installation methods
96
116
97
117
You can install Docker Engine in different ways, depending on your needs:
You can’t perform that action at this time.
0 commit comments