我正在尝试使用 apache guacamole docker 容器为 SSH 连接设置电力线修改字体。
容器已设置并正常工作,无需设置字体名称,一切正常。
这是我的容器的设置方式:
docker run --name=guacamole -d \
--network exposed-containers \
--restart=unless-stopped \
-e GUACD_HOSTNAME=guacd \
-e MYSQL_HOSTNAME=mariadb \
-e MYSQL_DATABASE=guacamole \
-e MYSQL_USER=guacamole \
-e MYSQL_PASSWORD=redacted \
-v /usr/share/fonts/Hack-Regular.ttf:/usr/share/fonts/Hack-Regular.ttf \
-v /usr/share/fonts/dejavu.ttf:/usr/share/fonts/dejavu.ttf \
-v /usr/share/fonts/notomono.ttf:/usr/share/fonts/notomono.ttf \
-p 9011:8080 guacamole/guacamole
在容器内检测到字体并且工作正常:
root@49d47e4258d3:/opt/guacamole# fc-list
/usr/share/fonts/truetype/dejavu/DejaVuSerif-Bold.ttf: DejaVu Serif:style=Bold
/usr/share/fonts/truetype/dejavu/DejaVuSansMono.ttf: DejaVu Sans Mono:style=Book
/usr/share/fonts/truetype/dejavu/DejaVuSans.ttf: DejaVu Sans:style=Book
/usr/share/fonts/dejavu.ttf: DejaVu Sans Mono for Powerline:style=Book
/usr/share/fonts/Hack-Regular.ttf: Hack:style=Regular
/usr/share/fonts/truetype/dejavu/DejaVuSans-Bold.ttf: DejaVu Sans:style=Bold
/usr/share/fonts/truetype/dejavu/DejaVuSansMono-Bold.ttf: DejaVu Sans Mono:style=Bold
/usr/share/fonts/notomono.ttf: Noto Mono for Powerline:style=Regular
/usr/share/fonts/truetype/dejavu/DejaVuSerif.ttf: DejaVu Serif:style=Book
root@49d47e4258d3:/opt/guacamole#
我尝试使用的字体是鳄梨调味酱所需的等宽字体,我之前在 linux 和 windows 上使用过该字体,所以我知道它可以工作。
我错过了什么?