Closed igdete closed 3 months ago
See the error message in the collaboration service log. Wopi secret is not set. You are coming from an older version of ocis.
@micbar thanks for your reply. Could you please clarify?
Wopi secret is not set.
Where should I set it? I didn't see variable it in .env
https://github.com/owncloud/ocis/blob/master/deployments/examples/ocis_full/.env
You are coming from an older version of ocis.
Do you mean OCIS_DOCKER_IMAGE
and OCIS_DOCKER_TAG
? Can you tell me actual version?
@igdete I am on vacation for the next two weeks.
@rhafer could you help?
the new ocis_full example only works with the latest rolling release (6.2.0)
@micbar thanks again, you are right, its work with OCIS_DOCKER_IMAGE=owncloud/ocis-rolling
and OCIS_DOCKER_TAG=6.2.0
. Have a nice vacation..:)
Hi @rhafer, in the guide https://owncloud.dev/ocis/deployment/ocis_full/ the production environment owncloud/ocis is used by default, but it doesn't work with this example. What do you think about adding production compatibility for this example?
What do you think about adding production compatibility for this example?
The example relies on features that are not yet available in the latest "production" release. E.g. we replace the external wopi servcie with the new built-in "collaboration" service. This is not something we can easily backport to the production branch.
For now I think we should make the ocis_full example default to the latest "rolling" image and add a note to the documentation that it requires at least a 6.2.0 release.
Describe the bug
Unable to create or open office document in oCIS with WOPI in the collabora or the onlyoffice. I use your development guide https://owncloud.dev/ocis/deployment/ocis_full/
Steps to reproduce
apt update && apt upgrade -y
and install docker and docker compose https://docs.docker.com/engine/install/ubuntu//etc/hosts
git clone https://github.com/owncloud/ocis.git --depth 1
, go tocd ocis/deployments/examples/ocis_full
and edit.env
TRAEFIK_DASHBOARD= TRAEFIK_DOMAIN= TRAEFIK_BASIC_AUTH_USERS= TRAEFIK_ACME_MAIL= TRAEFIK_ACME_CASERVER=
OCIS=:ocis.yml OCIS_DOCKER_IMAGE= OCIS_DOCKER_TAG= OCIS_DOMAIN=ocis.owncloud.test ADMIN_PASSWORD=test123 DEMO_USERS= LOG_LEVEL= LOG_PRETTY=true
S3NG=:s3ng.yml
S3NG_ENDPOINT= S3NG_REGION= S3NG_ACCESS_KEY= S3NG_SECRET_KEY= S3NG_BUCKET=
S3NG_MINIO=:minio.yml
MINIO_DOMAIN=
SMTP_HOST=
SMTP_PORT= SMTP_SENDER= SMTP_USERNAME= SMTP_PASSWORD= SMTP_AUTHENTICATION= SMTP_INSECURE=
TIKA=:tika.yml TIKA_IMAGE=
COLLABORA=:collabora.yml COLLABORA_DOMAIN=collabora.owncloud.test WOPISERVER_DOMAIN=wopiserver.owncloud.test COLLABORA_ADMIN_USER=admin COLLABORA_ADMIN_PASSWORD=test123 COLLABORA_SSL_ENABLE=false COLLABORA_SSL_VERIFICATION=false
CLOUD_IMPORTER=:cloudimporter.yml
COMPANION_IMAGE= COMPANION_DOMAIN= COMPANION_ONEDRIVE_KEY= COMPANION_ONEDRIVE_SECRET=
CLAMAV=:clamav.yml
CLAMAV_DOCKER_TAG=
ONLYOFFICE=:onlyoffice.yml ONLYOFFICE_DOMAIN=onlyoffice.owncloud.test WOPISERVER_ONLYOFFICE_DOMAIN=wopiserver.owncloud.test
INBUCKET=:inbucket.yml
INBUCKET_DOMAIN=
COMPOSE_FILE=docker-compose.yml${OCIS:-}${TIKA:-}${S3NG:-}${S3NG_MINIO:-}${COLLABORA:-}${MONITORING:-}${CLOUD_IMPORTER:-}${CLAMAV:-}${ONLYOFFICE:-}${INBUCKET:-}
Logs collaboration
Logs collaboration-oo
Make sure your /etc/ocis config contains the proper values, as far as I can see values
Additional context
Add any other context about the problem here. I tried changing several versions 5.0.1 and 5.0.6 in
OCIS_DOCKER_TAG
in.env
but it did not help. Deployment with document servers doesn't work? Or do I need to specify some specific other apps versions? Where?