Add note about windows mounting

This commit is contained in:
Pavel Lobashov
2022-07-13 14:40:03 +03:00
parent 1d26beacfb
commit 1b511a01a6

View File

@ -6,7 +6,7 @@ but don't want to compile pretty compilcated core product to make those changes.
## Installing ONLYOFFICE Docs
## How to use - Linux or macOS
## How to use
**Note**: You need the latest Docker version installed.
@ -48,3 +48,9 @@ docker run -i -t -d -p 80:80 --restart=always \
-v /host-dir/sdkjs:/var/www/onlyoffice/documentserver/sdkjs \
-v /host-dir/web-apps:/var/www/onlyoffice/documentserver/web-apps documentserver-develop
```
On windows systems you may need to escape current directory so mount param looks like this:
```shell
-v "/$(pwd)"/sdkjs:/var/www/onlyoffice/documentserver/sdkjs
```