From a734c8cd461fba41a4773db6b99b8d1f83e97a49 Mon Sep 17 00:00:00 2001 From: Aditya Oberai Date: Wed, 1 Apr 2026 11:20:45 +0530 Subject: [PATCH] Update installation commands in readme for 1.9.0 to include self-hosted wizard --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 457863d236..9815229e43 100644 --- a/README.md +++ b/README.md @@ -72,6 +72,7 @@ Before running the installation command, make sure you have [Docker](https://www ```bash docker run -it --rm \ + --publish 20080:20080 \ --volume /var/run/docker.sock:/var/run/docker.sock \ --volume "$(pwd)"/appwrite:/usr/src/code/appwrite:rw \ --entrypoint="install" \ @@ -84,6 +85,7 @@ docker run -it --rm \ ```cmd docker run -it --rm ^ + --publish 20080:20080 ^ --volume //var/run/docker.sock:/var/run/docker.sock ^ --volume "%cd%"/appwrite:/usr/src/code/appwrite:rw ^ --entrypoint="install" ^ @@ -94,6 +96,7 @@ docker run -it --rm ^ ```powershell docker run -it --rm ` + --publish 20080:20080 ` --volume /var/run/docker.sock:/var/run/docker.sock ` --volume ${pwd}/appwrite:/usr/src/code/appwrite:rw ` --entrypoint="install" `