在Docker 容器內設定中文的方法包括:使用-e 選項建立容器並設定LANG 環境變數;進入容器並使用echo $LANG 驗證設定;安裝必要的字體;修改/etc/locale.gen檔案並新增zh_CN.UTF-8 選項;執行locale-gen 指令產生locale;重新啟動容器。
如何設定Docker 中的中文
開門見山:在Docker 容器內設定中文步驟:
詳細步驟:
<code>docker run -itd --name my-container ubuntu:20.04 -e LANG=zh_CN.UTF-8</code>
<code>docker exec -it my-container /bin/bash</code>
<code>apt-get update && apt-get install msttcorefonts -y</code>
<code>nano /etc/locale.gen</code>
新增以下行:
<code>zh_CN.UTF-8 UTF-8</code>
儲存檔案並執行locale-gen 指令產生locale :
<code>locale-gen</code>
<code>docker restart my-container</code>
以上是docker怎麼設定中文的詳細內容。更多資訊請關注PHP中文網其他相關文章!