docker显示中文乱码的解决办法:1、通过locale命令来查看支持的语言;2、添加环境变量“LANG=en_ZW.utf8”。
本文操作环境:centOS6.8系统、Docker 20.10.11版、Dell G3电脑。
docker 显示中文乱码怎么办?
Docker中文乱码
locale 命令来查看有哪些语言支持
[root@0ca5b90999e6 soft]# locale -a|grep utf8 en_AG.utf8 en_AU.utf8 en_BW.utf8 en_CA.utf8 en_DK.utf8 en_GB.utf8 en_HK.utf8 en_IE.utf8 en_IN.utf8 en_NG.utf8 en_NZ.utf8 en_PH.utf8 en_SG.utf8 en_US.utf8 en_ZA.utf8 en_ZM.utf8 en_ZW.utf8
添加环境变量
[root@0ca5b90999e6 soft]# vim /etc/profile LANG=en_ZW.utf8 [root@0ca5b90999e6 soft]# source /etc/profile
注:
1、docker run时,最好最后加上 /usr/sbin/init,启动systemd (按需求来)
2、另外我的dockerfile 启动命令是 CMD /etc/init.d/sh/init.sh,会多启动一个脚本,其中会自动source,这样就不需要重新构建容器了
#!/bin/bash source /etc/profile /usr/sbin/sshd -D /bin/bash
推荐学习:《docker视频教程》
以上是docker 显示中文乱码怎么办的详细内容。更多信息请关注PHP中文网其他相关文章!