You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you want to avoid setting up the dependencies to compile Che core, plugins and the dashboard, we provide a Docker image that has all dependencies necessary to compile Che. You can have Che source code on your host and compile it within the container.
87
+
88
+
```sh
89
+
# For Mac + Linux:
90
+
docker run -it --rm --name build-che
91
+
-v "$HOME/.m2:/home/user/.m2"
92
+
-v "$PWD":/home/user/che-build
93
+
-w /home/user/che-build
94
+
codenvy/che-dev
95
+
mvn -DskipTests=true
96
+
-Dfindbugs.skip=true
97
+
-Dgwt.compiler.localWorkers=2 -T 1C
98
+
-Dskip-validate-sources
99
+
clean install
100
+
101
+
# For Windows, replace $HOME with location of Maven repository and $PWD with the directory where Che source code is installed.
102
+
```
103
+
85
104
### Run Che as a Server
86
105
If you want to run Che as a server where non-localhost clients connect, there are additional flags that you may need to configure. Please see the [usage documentation](https://eclipse-che.readme.io/docs/usage).
87
106
@@ -119,6 +138,7 @@ These repositories are for the core project hosted at `http://github.com/eclipse
119
138
### Other Repositories
120
139
These are external repositories that provide additional tools for Eclipse Che.
121
140
```
141
+
http://github.com/codenvy/Dockerfiles # Defines the images referenced by stacks in Che
122
142
http://github.com/codenvy/che-installer # Creates the Windows and JAR installer packages
123
143
http://github.com/codenvy/che-tutorials # SDK examples and tutorials (needs updating)
124
144
http://github.com/che-samples # GitHub organization with sample repos used in Che
0 commit comments