From 4493e6f5a5abde22e94fe6f3f8e34e5970dc9a68 Mon Sep 17 00:00:00 2001 From: Anja Barz Date: Mon, 13 Oct 2025 13:41:26 +0200 Subject: [PATCH 1/2] improve web app installation --- docs/admin/configuration/web-applications.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/admin/configuration/web-applications.md b/docs/admin/configuration/web-applications.md index 1769e954..a23dcf0b 100644 --- a/docs/admin/configuration/web-applications.md +++ b/docs/admin/configuration/web-applications.md @@ -33,6 +33,19 @@ By default, this path is: opencloud-compose/config/opencloud/apps ``` +:::note +If you are adding an app to an already running system, verify whether the `/web/assets/apps` directory exists inside your `$OC_DATA_DIR`. +If it does not exist, create it manually. +::: + +### Restart OpenCloud + +Restart the OpenCloud stack using the following command: + +```bash +docker compose up -d +``` + ### Access in OpenCloud Once the app is copied to the correct location, it will automatically appear in the OpenCloud interface. From b8ae3628abc2db81cb1228cbba9979e986384b48 Mon Sep 17 00:00:00 2001 From: Anja Barz Date: Tue, 14 Oct 2025 11:48:11 +0200 Subject: [PATCH 2/2] change restart command --- docs/admin/configuration/web-applications.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/admin/configuration/web-applications.md b/docs/admin/configuration/web-applications.md index a23dcf0b..fa445476 100644 --- a/docs/admin/configuration/web-applications.md +++ b/docs/admin/configuration/web-applications.md @@ -43,7 +43,7 @@ If it does not exist, create it manually. Restart the OpenCloud stack using the following command: ```bash -docker compose up -d +docker compose restart ``` ### Access in OpenCloud