From 56f5513816b71d5ed3cb1020bd381f6d299aa0a2 Mon Sep 17 00:00:00 2001 From: Justin Hayes Date: Mon, 18 Mar 2024 00:54:57 -0400 Subject: [PATCH] Fix --- docs/getting-started/troubleshooting.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started/troubleshooting.md b/docs/getting-started/troubleshooting.md index c8fa4c9..57211be 100644 --- a/docs/getting-started/troubleshooting.md +++ b/docs/getting-started/troubleshooting.md @@ -46,7 +46,7 @@ To reset the admin password for Open WebUI in a Docker deployment, generate a bc 2. **Update password in Docker** (replace `HASH` and `admin@example.com`): ```bash - docker run --rm -v open-webui:/data alpine/socat EXEC:"bash -c 'apk add sqlite && echo UPDATE auth SET password='\''HASH'\'' WHERE email='\''admin@example.com'\''; | sqlite3 /data/ollama.db'", STDIO + docker run --rm -v open-webui:/data alpine/socat EXEC:"bash -c 'apk add sqlite && echo UPDATE auth SET password='\''HASH'\'' WHERE email='\''admin@example.com'\''; | sqlite3 /data/webui.db'", STDIO ``` ### Reset Admin Password Locally