32 lines
867 B
YAML
32 lines
867 B
YAML
|
|
version: '3.8'
|
||
|
|
|
||
|
|
services:
|
||
|
|
onlyoffice-standalone:
|
||
|
|
image: onlyoffice/documentserver:latest
|
||
|
|
container_name: onlyoffice-standalone
|
||
|
|
restart: unless-stopped
|
||
|
|
ports:
|
||
|
|
- "127.0.0.1:8083:80" # Новый порт (8081 и 8082 заняты)
|
||
|
|
environment:
|
||
|
|
- JWT_ENABLED=false
|
||
|
|
- JWT_SECRET=
|
||
|
|
- WOPI_ENABLED=false
|
||
|
|
volumes:
|
||
|
|
- onlyoffice-standalone-data:/var/www/onlyoffice/Data
|
||
|
|
- onlyoffice-standalone-logs:/var/log/onlyoffice
|
||
|
|
- onlyoffice-standalone-fonts:/usr/share/fonts/truetype/custom
|
||
|
|
- onlyoffice-standalone-forgotten:/var/lib/onlyoffice/documentserver/App_Data/cache/files/forgotten
|
||
|
|
networks:
|
||
|
|
- crm-network
|
||
|
|
|
||
|
|
volumes:
|
||
|
|
onlyoffice-standalone-data:
|
||
|
|
onlyoffice-standalone-logs:
|
||
|
|
onlyoffice-standalone-fonts:
|
||
|
|
onlyoffice-standalone-forgotten:
|
||
|
|
|
||
|
|
networks:
|
||
|
|
crm-network:
|
||
|
|
name: crm-network
|
||
|
|
|