LoginSignup
4
2

More than 5 years have passed since last update.

メモ: chromeデスクトップ (siomiz/chrome)に感動した

Last updated at Posted at 2018-02-07

参考

起動方法

起動方法
docker run -p 127.0.0.1:5900:5900 siomiz/chrome

サイズも小さい(展開後835MB)
$ docker images
REPOSITORY          TAG                 IMAGE ID            CREATED             SIZE
siomiz/chrome       latest              009f9abacdcb        3 weeks ago         835 MB

パスワードを有効にする

パスワードの作成
# abcdという接続用パスワードを指定
echo abcd | vncpasswd -f > vncpasswd
run.sh
# データーコンテナの作成
docker run -d \
 --name chrome-profile \
 siomiz/chrome

# chromeコンテナ起動
docker run -d \
 --volumes-from chrome-profile \
 -v $(pwd)/vncpasswd:/home/chrome/.vnc/passwd \
 -p 5900:5900 \
 siomiz/chrome
起動
sh run.sh
接続
vncviewer localhost

日本語入力

4
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
2