From dda1255080fb65b91cc9d31486846222c06eea9e Mon Sep 17 00:00:00 2001 From: Zihao Zhou Date: Tue, 15 Oct 2024 18:51:07 -0700 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=EF=B8=8F=20Fix=20typo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/guide/troubleshooting.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/docs/guide/troubleshooting.md b/docs/guide/troubleshooting.md index fba9451..327597a 100644 --- a/docs/guide/troubleshooting.md +++ b/docs/guide/troubleshooting.md @@ -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