From bee33caae573553c1aeea8b2e43324627570a419 Mon Sep 17 00:00:00 2001 From: dajiaohuang Date: Mon, 31 Aug 2026 23:41:24 +0800 Subject: [PATCH] docs: correct embedded PostgreSQL volume path --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9bb0801cc..085bb1689 100644 --- a/README.md +++ b/README.md @@ -104,7 +104,7 @@ One image carries the app, the API, the browser the Bots drive, and optionally P ```sh docker build -t openbot . docker run -p 3001:3001 --env-file .env \ - -e EMBEDDED_POSTGRES=on -v openbot-data:/var/lib/postgresql/data openbot + -e EMBEDDED_POSTGRES=on -v openbot-data:/var/lib/postgresql openbot ``` Leave `EMBEDDED_POSTGRES` off and set `DATABASE_URL` to point at a database you already run.