Updated README setup instructions

This commit is contained in:
Eldad Fux
2020-07-31 15:49:15 +03:00
parent a447f21297
commit 280f2e4296
+6 -9
View File
@@ -50,9 +50,8 @@ The easiest way to start running your Appwrite server is by running our docker-c
```bash
docker run -it --rm \
--volume /var/run/docker.sock:/var/run/docker.sock \
--volume "$(pwd)"/appwrite:/install/appwrite:rw \
-e version=0.7.0 \
appwrite/install
--volume "$(pwd)"/appwrite:/usr/src/code/appwrite:rw \
appwrite/appwrite:0.7.0
```
### Windows
@@ -62,9 +61,8 @@ docker run -it --rm \
```cmd
docker run -it --rm ^
--volume //var/run/docker.sock:/var/run/docker.sock ^
--volume "%cd%"/appwrite:/install/appwrite:rw ^
-e version=0.7.0 ^
appwrite/install
--volume "%cd%"/appwrite:/usr/src/code/appwrite:rw ^
appwrite/appwrite:0.7.0
```
#### PowerShell
@@ -72,9 +70,8 @@ docker run -it --rm ^
```powershell
docker run -it --rm ,
--volume /var/run/docker.sock:/var/run/docker.sock ,
--volume ${pwd}/appwrite:/install/appwrite:rw ,
-e version=0.7.0 ,
appwrite/install
--volume ${pwd}/appwrite:/usr/src/code/appwrite:rw ,
appwrite/appwrite:0.7.0
```
Once the Docker installation completes, go to http://localhost to access the Appwrite console from your browser. Please note that on non-linux native hosts, the server might take a few minutes to start after installation completes.