1
0
Fork 0
mirror of synced 2024-06-01 10:29:48 +12:00

Fix PowerShell line continuation character

PowerShell uses the backtick as line continuation character, not comma.
This commit is contained in:
Trevor Sullivan 2022-09-27 01:17:19 -06:00 committed by GitHub
parent b575df867e
commit 85cd2c1472
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -91,10 +91,10 @@ docker run -it --rm ^
#### PowerShell
```powershell
docker run -it --rm ,
--volume /var/run/docker.sock:/var/run/docker.sock ,
--volume ${pwd}/appwrite:/usr/src/code/appwrite:rw ,
--entrypoint="install" ,
docker run -it --rm `
--volume /var/run/docker.sock:/var/run/docker.sock `
--volume ${pwd}/appwrite:/usr/src/code/appwrite:rw `
--entrypoint="install" `
appwrite/appwrite:1.0.1
```