Merge pull request #8896 from owncloud/update_ocis_wopi_readme

[docs-only] updating the ocis-wopi deployment readme's
This commit is contained in:
Martin
2024-04-18 20:12:48 +02:00
committed by GitHub
2 changed files with 18 additions and 2 deletions
+6 -2
View File
@@ -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.
+12
View File
@@ -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
```