Can Eclipse Che be used to develop traditional monolithic applications? An application that does not use Docker

Can Eclipse Che be used to develop traditional monolithic applications? An application that does not use Docker. If possible, is this a good decision to move to Eclipse Che from the Eclipse desktop? Does Che Provide All Plugins?

+5
source share
1 answer

Definitely - Che uses Docker under the hood as a way to create replicable and portable environments, but the code that was edited in Che translates into a repo like any other. Therefore, if you have a CI build / install system to pull these changes from the repo and deploy a monolithic application that will work anyway.

To configure it, you will need to create a Docker file that matches your runtime. You can find examples of most environments on Dockerhub and there are only a couple of things you need to add to make the container β€œready”.

0
source

Source: https://habr.com/ru/post/1236206/


All Articles