Skip to content

Commit dda1255

Browse files
committed
✏️ Fix typo
1 parent 6e2e741 commit dda1255

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

docs/guide/troubleshooting.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,22 @@ sudo systemctl stop docker
5858
sudo apt-get remove docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
5959
```
6060

61-
Then, install Docker 2.3.0.
61+
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.
6277

6378
```bash
6479
sudo apt-get update

0 commit comments

Comments
 (0)