c68dddfc01
新增 ONLYOFFICE 配置签名、内部内容接口、容器编排与反向代理。 打通网页端和桌面端独立预览工作区,完善文档入口、布局及帮助体验。 补充桌面安全发布门禁、开发脚本、使用文档和前后端测试。
11 lines
400 B
Docker
11 lines
400 B
Docker
ARG ONLYOFFICE_IMAGE=onlyoffice/documentserver:9.4.0.1
|
|
FROM ${ONLYOFFICE_IMAGE}
|
|
|
|
USER root
|
|
|
|
# Use redistributable Noto CJK fonts for Chinese document preview. Proprietary
|
|
# Microsoft fonts must be supplied separately by an authorized deployment.
|
|
RUN apt-get update \
|
|
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends fonts-noto-cjk \
|
|
&& rm -rf /var/lib/apt/lists/*
|