From f9abc63d46c48bbb068ee31ca712fa3c2dd00bdf Mon Sep 17 00:00:00 2001 From: dochoss Date: Mon, 3 Feb 2025 09:14:23 -0600 Subject: [PATCH] Add Windows paths for Docker volumes Includes link to StackOverflow post where more links can be found, as well as credit to the SO post author --- docs/getting-started/updating.mdx | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/docs/getting-started/updating.mdx b/docs/getting-started/updating.mdx index 07c92a7..1b0a473 100644 --- a/docs/getting-started/updating.mdx +++ b/docs/getting-started/updating.mdx @@ -108,4 +108,13 @@ The data is stored in a Docker volume named `open-webui`. The path to the volume docker volume inspect open-webui ``` -This will show you the details of the volume, including the mountpoint, which is usually located in `/var/lib/docker/volumes/open-webui/_data`. +This will show you the details of the volume, including the mountpoint, which is usually located in `/var/lib/docker/volumes/open-webui/_data`. + +On Windows 10 + WSL 2, Docker volumes are located here (type in the Windows file explorer): +- \\\wsl$\docker-desktop\mnt\docker-desktop-disk\data\docker\volumes + +For older versions of Docker (pre-Docker v26.1.4): +- \\\wsl$\docker-desktop-data\data\docker\volumes +- \\\wsl$\docker-desktop-data\version-pack-data\community\docker\volumes + +_(Windows answer credit to StackOverflow user sarye-haddadi; [link to original SO post](https://stackoverflow.com/questions/43181654/locating-data-volumes-in-docker-desktop-windows))_