Skip to content

Commit

Permalink
✏️ Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ZihaoZhou committed Oct 16, 2024
1 parent 6e2e741 commit dda1255
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion docs/guide/troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,22 @@ sudo systemctl stop docker
sudo apt-get remove docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
```

Then, install Docker 2.3.0.
Then, modifies the Docker daemon configuration file:

```bash
sudo nano /etc/docker/daemon.json
```

add or modify the "storage-driver" option in the file:

```json
{
...,
"storage-driver": "overlay"
}
```

install Docker 2.3.0.

```bash
sudo apt-get update
Expand Down

0 comments on commit dda1255

Please sign in to comment.