We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e2e741 commit dda1255Copy full SHA for dda1255
docs/guide/troubleshooting.md
@@ -58,7 +58,22 @@ sudo systemctl stop docker
58
sudo apt-get remove docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
59
```
60
61
-Then, install Docker 2.3.0.
+Then, modifies the Docker daemon configuration file:
62
+
63
+```bash
64
+sudo nano /etc/docker/daemon.json
65
+```
66
67
+add or modify the "storage-driver" option in the file:
68
69
+```json
70
+{
71
+ ...,
72
+ "storage-driver": "overlay"
73
+}
74
75
76
+install Docker 2.3.0.
77
78
```bash
79
sudo apt-get update
0 commit comments