#dockergui
Explore tagged Tumblr posts
h2smedia · 5 years ago
Text
How to install Docker on Windows 10 or 7 without Hyper-V
Tumblr media
Do you want to install Docker on Windows 10/8/7 or server without enabling the Hyper-V (Hypervisor Platform)? Then here is the tutorial, the easiest way to start a Docker container on Windows... Docker, an open-source platform offers containerized virtual machines to run various apps and operating systems in an isolated environment. As compared to other virtual machines software, the Docker is lightweight, and images on it use the system's kernel to provide optimized speed. Moreover, the images meant to run on it are also stripped down or very light, for example, Ubuntu Image which is far small in size and lighter as compared to regular Ubuntu server CLI ISO available online to download and use. In terms of version, Docker offers two editions one is Enterprise and the other community that is open-source software. Although the open-source which is free to use has all the functions required to operate containers and can be used on servers and on development to test machines; the things which make it different from the Enterprise version are the support and some management functions to also use them in productive operations. So, if you don't want to enable Hyper-V in order to preserve Virtualization support to other software such as VirtualBox or Vmware workstation player then here is the simple way to install Docker-CE on Windows 10 or 7 using the Docker ToolBox. Read the full article
0 notes
pulipuli · 3 years ago
Text
今天又繼續來講Docker在桌面應用程式的坑。 這次的坑是......輸入法問題。 非英語系國家使用Linux的時候,輸入法一直都是最常碰到的障礙。 如果要在Docker裡面跑桌面應用程式,也一樣會遇到這個問題。 查了之後,才發現大家把Docker裡跑桌面應用程式的做法成為Docker GUI。而且苦惱輸入法問題的人還蠻多的。 https://blog.longwin.com.tw/2020/12/linux-docker-gui-chinese-input-enable-2020/#comment-68410 網路上大部分的講法都是加上環境變數即可。例如: ````bash docker run --rm \ -e XMODIFIERS="@im=ibus" \ -e QT_IM_MODULE="ibus" \ -e GTK_IM_MODULE="ibus" ```` 但經過幾番嘗試後,我發現Debian 10的映像檔不能使用,但Ubuntu 20.04卻可以正常運作。 此外,還要安裝中文語言包、產生中文語言檔案、設定LC_ALL什麼的...眉眉角角有點多啊。 不過弄到可以打輸入法的瞬間,我有點被嚇到了。儘管有時候輸入的組合會讓輸入法誤以為我在打空白或英文單字,但還是可以用RIME寫中文。 不知不覺間,對Docker GUI的研究又前進了一大步呢。 ---- 你有想過要把什麼應用程式打包成Docker嗎? 歡迎在下面聊聊喔! #Docker #DockerGUI
0 notes
pulipuli · 3 years ago
Text
今天我們繼續處理用Docker顯示桌面應用程式的坑。 這次要處理的坑還蠻簡單的,是中文字型無法顯示的問題。 我們都知道Docker是基於Linux作業系統。而Linux作業系統的核心是以英文為主,如果要顯示中文,必須在系統內安裝中文的字型。 但問題來了,要在Linux裡裝中文字型,我們要先確認一下你現在使用的Docker影像檔是那個發佈版。 最基本的做法是查看現在的發佈版,指令如下: ````bash cat /etc/os-release ```` 接著我們就可以依據不同的發佈版,用不同的指令來安裝中文字型。 https://unix.stackexchange.com/a/548473/491238 感謝intika整理了Debian、Arch、Fedoa、Gentoo等不同發佈版的安裝方法。 裝完之後,在Docker裡執行的桌面應用程式,就可以正常顯示中文囉。 #Docker #DockerGUI #Chinese
0 notes