7 lines
229 B
Bash
7 lines
229 B
Bash
|
#!/bin/sh
|
||
|
set -e
|
||
|
|
||
|
# we can't mount it directly because the run-document-server.sh script wants to move it
|
||
|
cp /etc/onlyoffice/documentserver/local.dist.json /etc/onlyoffice/documentserver/local.json
|
||
|
|
||
|
/app/ds/run-document-server.sh
|