-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Introduce codenvy/che-test and codenvy/che-file docker images #1986
Conversation
// Project: https://github.com/jakearchibald/ES6-Promise | ||
// Definitions by: François de Campredon <https://github.com/fdecampredon/>, vvakame <https://github.com/vvakame> | ||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is the origin of this file?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
deleted check-in, will be part of only a compile time type dependencies
COPY lib/typescript/bin /bin | ||
ADD che-file/src/che.properties /lib/che.properties | ||
|
||
ENTRYPOINT ["/bin/che", "che-file"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
New line
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed
return this.ip; | ||
} | ||
|
||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
newline
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed
lgtm - congratulations! |
if review is OK I could then merge this PR and we can keep adding changes on them as ppl will be able to test it |
ok to merge |
First one is codenvy/che-test allowing to check a local or remote Eclipse Che instance by creating a workspace, starting it and displaying console output The other one is codenvy/che-file allowing to boot a local Eclipse Che by using a local directory. It will mount in Che this local folder as being a project. Change-Id: Ie794b41f89608f86e589f1aeea06d63f0d9f2edc Signed-off-by: Florent BENOIT <fbenoit@codenvy.com>
Build # 1347 - FAILED Please check console output at http://ci.codenvy-dev.com/jenkins/job/che-pullrequests-build/1347/ to view the results. |
What does this PR do?
It provides two docker images
codenvy/che-test
docker run --rm -v /var/run/docker.sock:/var/run/docker.sock codenvy/che-test <post-check> [URL of Che/Codenvy] [login] [password]
Which create a workspace, start it and display log
codenvy/che-file
still in wip with a run syntax close to
docker run -v /var/run/docker.sock:/var/run/docker.sock -v "$PWD":"$PWD" --rm codenvy/che-file $PWD <init|up>
Tests written?
No