docker容器添加微软雅黑字体
作者:互联网
添加中文字体其实很简单,往容器里COPY一个ttf字体文件就生效了,不需要执行fc-cache。
基于debian 8的tomcat容器,Dockerfile:
COPY msyh.ttf /usr/share/fonts/msyh.ttf
容器启动的时候这个ttf就已经生效了。
1. 到windows 下载微软雅黑字体
字体路径 C:/WINDOWS/Fonts
雅黑:msyh
1、检查字体是否已经安装:
fc-list ----------检查所有已有的字体 fc-list :lang=zh -----------只检查中文
实例配置
RUN yum -y install kde-l10n-Chinese net-tools && \ yum -y reinstall glibc-common &&\ yum clean all && \ localedef -c -f UTF-8 -i zh_CN zh_CN.utf8 ENV LC_ALL "zh_CN.UTF-8" COPY msyh.ttc /usr/share/fonts/msyh.ttc
标签:msyh,zh,CN,微软,fc,字体,docker,雅黑,ttf 来源: https://www.cnblogs.com/weifeng1463/p/10475713.html