init
commit
00e8f6d819
@ -0,0 +1,14 @@
|
|||||||
|
## ONLYOFFICE Document Server
|
||||||
|
Установка отдельного сервера документов
|
||||||
|
[Installing ONLYOFFICE Docs Community Edition for Docker on a local server](https://helpcenter.onlyoffice.com/installation/docs-community-install-docker.aspx)
|
||||||
|
|
||||||
|
Заменить:
|
||||||
|
|
||||||
|
**JWT_SECRET=<CHANGE_ME>**
|
||||||
|
|
||||||
|
|
||||||
|
```
|
||||||
|
git clone https://git.badms.ru/bms/documentserver
|
||||||
|
cd documentserver
|
||||||
|
docker compose up -d
|
||||||
|
```
|
||||||
@ -0,0 +1,23 @@
|
|||||||
|
version: "3.8"
|
||||||
|
|
||||||
|
services:
|
||||||
|
onlyoffice-document-server:
|
||||||
|
image: onlyoffice/documentserver-unlim:7.5.1.1
|
||||||
|
build: ../oo-unlim
|
||||||
|
restart: always
|
||||||
|
container_name: onlyoffice-document-server
|
||||||
|
environment:
|
||||||
|
- JWT_SECRET=<CHANGE_ME>
|
||||||
|
- JWT_HEADER=AuthorizationJwt
|
||||||
|
# volumes:
|
||||||
|
# - ./data/document_ssl:/var/www/onlyoffice/Data/certs # for certificates
|
||||||
|
# - ./data/document_data:/var/www/onlyoffice/Data # for certificates
|
||||||
|
# - ./data/document_log:/var/log/onlyoffice # for ONLYOFFICE Docs logs
|
||||||
|
# - ./data/document_fonts:/usr/share/fonts/truetype/custom # for fonts
|
||||||
|
# - ./data/document_forgotten:/var/lib/onlyoffice/documentserver/App_Data/cache/files/forgotten # ??
|
||||||
|
ports:
|
||||||
|
- '80:80'
|
||||||
|
- '443:443'
|
||||||
|
|
||||||
|
networks:
|
||||||
|
document-server:
|
||||||
Loading…
Reference in New Issue