「Eclipse Che」の版間の差分

提供: Linux入門
移動: 案内検索
(ページの作成:「Eclipse Che とは、クラウド型のIDE環境です。 '''読み方''' ;Eclipse Che: えくりぷす ちぇ __TOC__ == 概要 == == 使い方 == <s...」)
 
 
行31: 行31:
 
INFO: ECLIPSE CHE: Use: http://172.17.0.1:8080
 
INFO: ECLIPSE CHE: Use: http://172.17.0.1:8080
 
INFO: ECLIPSE CHE: API: http://172.17.0.1:8080/swagger
 
INFO: ECLIPSE CHE: API: http://172.17.0.1:8080/swagger
 +
</syntaxhighlight>
 +
== メモ ==
 +
socket を指定しないと、以下のエラーが出ます。
 +
<synatxhighlight lang="bash">
 +
$ sudo docker run -p 8081:8080 -p 8000:8000 -p 49152-49162:49152-49162 -v /var/run/ codenvy/che
 +
---------------------------------------
 +
ERROR: !!!
 +
ERROR: !!! Docker socket (/var/run/docker.sock) hasn't be mounted inside the container. Verify the syntax of the "docker run" command.
 +
ERROR: !!!
 +
---------------------------------------
 
</syntaxhighlight>
 
</syntaxhighlight>
 
== 関連項目 ==
 
== 関連項目 ==

2017年4月16日 (日) 22:13時点における最新版

Eclipse Che とは、クラウド型のIDE環境です。

読み方

Eclipse Che
えくりぷす ちぇ

概要

使い方

$ sudo docker run -p 81:8080 -p 8000:8000 -p 49152-49162:49152-49162 -v /var/run/docker.sock:/var/run/docker.sock codenvy/che start
INFO: ECLIPSE CHE: Pulling image codenvy/che-server:latest
latest: Pulling from codenvy/che-server
e110a4a17941: Already exists
87de885dae11: Pulling fs layer
dcf05c63220c: Pulling fs layer
87de885dae11: Verifying Checksum
87de885dae11: Download complete
87de885dae11: Pull complete
dcf05c63220c: Verifying Checksum
dcf05c63220c: Download complete
dcf05c63220c: Pull complete
Digest: sha256:6f9335d09cca87d499cd95bf1dd360d9bc7a70364c7871de92348d4757c59903
Status: Downloaded newer image for codenvy/che-server:latest
 
INFO: ECLIPSE CHE: Starting container...
INFO: ECLIPSE CHE: Server logs at "docker logs -f che-server"
INFO: ECLIPSE CHE: Server booting...
INFO: ECLIPSE CHE: Booted and reachable
INFO: ECLIPSE CHE: Use: http://172.17.0.1:8080
INFO: ECLIPSE CHE: API: http://172.17.0.1:8080/swagger

メモ

socket を指定しないと、以下のエラーが出ます。 <synatxhighlight lang="bash"> $ sudo docker run -p 8081:8080 -p 8000:8000 -p 49152-49162:49152-49162 -v /var/run/ codenvy/che


ERROR: !!! ERROR: !!! Docker socket (/var/run/docker.sock) hasn't be mounted inside the container. Verify the syntax of the "docker run" command. ERROR: !!!


</syntaxhighlight>

関連項目