I'm trying to rewrite all docker-compose files to meet the design philosophies of docker. Reason is that I'm not satisfied with the answers in https://community.onlyoffice.com/t/how-to-restart-onlyoffice-docspace-enterprise-in-docker/10576 - I simply don't want to use sledge hammers to do tiny things. Also I want to keep it under control.
Firs step was to start all docker compose-files using docker compose -f <file>.yml up -d, and using this .env file and made some minor changes to avoid mixing it up with the existing OnlyOffice Workspace installation.
I'm not sure if I did the right order, but did this:
- db.yml
- rabbitmq.yml
- redis.yml
- ds.yml
- healthchecks.yml
- notify.yml
- ds.yml
- dashboards.yml
- docspace.yml
Unfortunately I get this error, after docspace.yml has been started:
docspace-doceditor | Error: the worker has exited
docspace-doceditor | at ThreadStream.write (/var/www/products/ASC.Editors/editor/node_modules/thread-stream/index.js:238:19)
docspace-doceditor | at Pino.write (/var/www/products/ASC.Editors/editor/node_modules/pino/lib/proto.js:217:10)
docspace-doceditor | at Pino.LOG [as error] (/var/www/products/ASC.Editors/editor/node_modules/pino/lib/tools.js:62:21)
docspace-doceditor | at process.<anonymous> (/var/www/products/ASC.Editors/editor/server.js:246:9)
docspace-doceditor | at process.emit (node:events:530:35)
docspace-doceditor | at process._fatalException (node:internal/process/execution:154:25)
I'm not sure how to interpret this. I assume I did not mount the right volumes, or something like that. Can you please enlighten me what this error means?
I'm trying to rewrite all docker-compose files to meet the design philosophies of docker. Reason is that I'm not satisfied with the answers in https://community.onlyoffice.com/t/how-to-restart-onlyoffice-docspace-enterprise-in-docker/10576 - I simply don't want to use sledge hammers to do tiny things. Also I want to keep it under control.
Firs step was to start all docker compose-files using
docker compose -f <file>.yml up -d, and using this .env file and made some minor changes to avoid mixing it up with the existing OnlyOffice Workspace installation.I'm not sure if I did the right order, but did this:
Unfortunately I get this error, after docspace.yml has been started:
I'm not sure how to interpret this. I assume I did not mount the right volumes, or something like that. Can you please enlighten me what this error means?