All Projects → uphy → ubuntu-desktop-jp

uphy / ubuntu-desktop-jp

Licence: other
日本人向けのUbuntuデスクトップ環境のDockerイメージです。

Programming Languages

Dockerfile
14818 projects

Projects that are alternatives of or similar to ubuntu-desktop-jp

Mahjong
Implementation of riichi mahjong related stuff (hand cost, shanten, agari end, etc.)
Stars: ✭ 188 (+203.23%)
Mutual labels:  japanese
Vimdoc Ja
A project which translate Vim documents into Japanese.
Stars: ✭ 245 (+295.16%)
Mutual labels:  japanese
CrownLabs
Kubernetes-based Remote Laboratories
Stars: ✭ 96 (+54.84%)
Mutual labels:  novnc
Textlint Rule Preset Ja Technical Writing
技術文書向けのtextlintルールプリセット
Stars: ✭ 218 (+251.61%)
Mutual labels:  japanese
Core
🔞 JAVClub - 让你的大姐姐不再走丢
Stars: ✭ 2,728 (+4300%)
Mutual labels:  japanese
IchigoJam-BASIC
🍓🅱️ IchigoJam BASIC コマンド一覧 command reference (Japanese)
Stars: ✭ 11 (-82.26%)
Mutual labels:  japanese
Safarikai
Safari extension for translating Japanese words.
Stars: ✭ 177 (+185.48%)
Mutual labels:  japanese
Kaku
画 - Japanese OCR Dictionary
Stars: ✭ 160 (+158.06%)
Mutual labels:  japanese
Sample apps
Railsチュートリアルの各章が終わった状態を集めたリポジトリです。
Stars: ✭ 240 (+287.1%)
Mutual labels:  japanese
ark-pixel-font
Open source Pan-CJK pixel font / 开源的泛中日韩像素字体
Stars: ✭ 1,767 (+2750%)
Mutual labels:  japanese
Ja.javascript.info
現代の JavaScript チュートリアル
Stars: ✭ 226 (+264.52%)
Mutual labels:  japanese
Pykakasi
NLP: Convert Japanese Kana-kanji sentences into Kana-Roman in simple algorithm.
Stars: ✭ 238 (+283.87%)
Mutual labels:  japanese
jmdict-simplified
JMdict, JMnedict, Kanjidic, KRADFILE/RADKFILE in JSON format
Stars: ✭ 96 (+54.84%)
Mutual labels:  japanese
Voracious
A video player for studying foreign languages (esp. Japanese)
Stars: ✭ 203 (+227.42%)
Mutual labels:  japanese
Convert-Numbers-to-Japanese
Converts Arabic numerals, or 'western' style numbers, to a Japanese context.
Stars: ✭ 33 (-46.77%)
Mutual labels:  japanese
Kanji Data Media
Japanese language data on kanji and radicals, media files, fonts and related resources from Kanji alive
Stars: ✭ 186 (+200%)
Mutual labels:  japanese
python-doc-ja
Python ドキュメント日本語訳プロジェクト
Stars: ✭ 130 (+109.68%)
Mutual labels:  japanese
websockify-nginx-module
Embed websockify into Nginx (convert any tcp connection into websocket)
Stars: ✭ 132 (+112.9%)
Mutual labels:  novnc
kanji-handwriting-swift
Kanji handwriting recognition for iOS using Zinnia.
Stars: ✭ 27 (-56.45%)
Mutual labels:  japanese
nippon
日语N5-N2语法笔记~ 🍻
Stars: ✭ 84 (+35.48%)
Mutual labels:  japanese

UbuntuデスクトップDockerイメージ

このプロジェクトは、日本人向けのUbuntuデスクトップ環境を、Dockerコンテナとして提供することを目的とします。
Ubuntuデスクトップ環境を、ブラウザ上で利用することが出来ます。

デスクトップ環境の構成

  • xvfbによる仮想ディスプレイ
  • xfceによる軽量デスクトップ環境
  • x11vncによるリモートデスクトップ(ポートはコンテナ外に非公開)
  • noVNCによるブラウザによるリモートデスクトップ

日本人向け対応

  • 日本語言語パックのプレインストール
  • 日本語入力(Anthy)のプレインストール
  • 日本のタイムゾーン設定

使い方

お試し実行

まずはお試しで実行してみます。

$ docker run --rm -p 8080:8080 uphy/ubuntu-desktop-jp:20.04

コンテナが立ち上がったら、ブラウザでhttp://localhost:8080にアクセスしてください。 以下のような画面が表示されたら成功です。
novnc

Connectをクリックすると、デスクトップが利用できます。
desktop


環境によってはディスプレイサイズの違いから、全体が表示できないかもしれません。
左側のバーをクリックして、「Full Screen」ボタンをクリックすると、画面サイズに合わせて拡大・縮小表示してくれます。
サーバー側の解像度を変えたい場合には、/etc/supervisord/conf.d/desktop.confの以下の行を環境に合わせて変更して下さい。

[program:X11]
command=/usr/bin/Xvfb :0 -screen 0 1280x800x16

データの永続化について

このイメージは、特にVOLUME設定を行っていないため、デフォルトではコンテナを再構築するとデスクトップに対して行った設定等はクリアされます。
必要に応じて設定を永続化してください。

例:

$ docker run \
    -v "$(pwd)/data/config:/root/.config" \
    -v "$(pwd)/data/Desktop:/root/Desktop" \
    -p 8080:8080 \
    uphy/ubuntu-desktop-jp:20.04
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].