From 5246b199a6eaf2a8de96360a003a6451d73fc574 Mon Sep 17 00:00:00 2001 From: mmattel Date: Thu, 18 Apr 2024 16:36:32 +0200 Subject: [PATCH] [docs-only] updating the ocis-wopi deployment readme's --- deployments/examples/ocis_wopi/README.md | 8 ++++++-- docs/ocis/deployment/ocis_wopi.md | 12 ++++++++++++ 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/deployments/examples/ocis_wopi/README.md b/deployments/examples/ocis_wopi/README.md index adfbf2a754..9a346f6505 100644 --- a/deployments/examples/ocis_wopi/README.md +++ b/deployments/examples/ocis_wopi/README.md @@ -2,5 +2,9 @@ document this deployment example in: docs/ocis/deployment/ocis_wopi.md --- -Please refer to [our documentation](https://owncloud.dev/ocis/deployment/ocis_wopi/) -for instructions on how to deploy this scenario. +# Infinite Scale WOPI Deployment Example + +This deployment example is documented in the [developer documentation](https://owncloud.dev/ocis/deployment/ocis_wopi/). +See the link for more details and instructions on how to deploy this scenario. + +Also see the [Admin Documentation](https://doc.owncloud.com/ocis/latest/index.html) for administrative and more configuration details. diff --git a/docs/ocis/deployment/ocis_wopi.md b/docs/ocis/deployment/ocis_wopi.md index 0d3e609b72..96c8a64108 100644 --- a/docs/ocis/deployment/ocis_wopi.md +++ b/docs/ocis/deployment/ocis_wopi.md @@ -180,3 +180,15 @@ In case you want to run ownCloud Web from a development branch together with thi 5. Start the deployment example as described above in the `Local setup` section. For app provider frontend development in `web` you can find the source code in `web/packages/web-app-external`. Some parts of the integration live in `web/packages/web-app-files`. + +## Using Podman + +Podman doesn't have a "local" log driver. Also it's docker-compatibility socket does live in a different location, especially when running a rootless podman. + +Using the following settings you can run the deployment with a recent podman version: + +```bash +LOG_DRIVER=journald \ +DOCKER_SOCKET_PATH=/run/user/1000/podman/podman.sock \ +podman compose start +```