From 866a945c68e9f061c69446232f9ee6a9df409ffd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= <1005065+DeepDiver1975@users.noreply.github.com> Date: Tue, 23 Apr 2024 10:35:55 +0200 Subject: [PATCH] docs: use WEB_ASSET_CORE_PATH and WEB_ASSET_APPS_PATH instead of WEB_ASSET_PATH --- docs/ocis/deployment/ocis_wopi.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/ocis/deployment/ocis_wopi.md b/docs/ocis/deployment/ocis_wopi.md index 96c8a6410..deac95a99 100644 --- a/docs/ocis/deployment/ocis_wopi.md +++ b/docs/ocis/deployment/ocis_wopi.md @@ -173,9 +173,10 @@ In case you want to run ownCloud Web from a development branch together with thi - /your/local/path/to/web/dist/:/web/dist:ro ``` Make sure to point to the `dist` folder inside your local copy of the web repository. -4. Set the oCIS environment variable `WEB_ASSET_PATH` in the `environment` section of the `ocis` service, so that it uses your mounted dist folder for the web assets, instead of the assets that are embedded into oCIS. +4. Set the oCIS environment variables `WEB_ASSET_CORE_PATH` and `WEB_ASSET_APPS_PATH` in the `environment` section of the `ocis` service, so that it uses your mounted dist folder for the web assets, instead of the assets that are embedded into oCIS. ```yaml - WEB_ASSET_PATH: "/web/dist" + WEB_ASSET_CORE_PATH: "/web/dist" + WEB_ASSET_APPS_PATH: "/web/dist" ``` 5. Start the deployment example as described above in the `Local setup` section.