Work with docker and IDE

To share the installation, we decided to work with the docker. For each project, global dependencies are installed inside the container.

We are developing with Python (and Java, but at this time we will only talk about Python;))

When working with Vim (for example), I want to use code completion, but since all the libraries are installed in the container, my vim installation on the host cannot access them. This is true for Java, Javascript, etc., and it is absolutely normal ...

But is there any solution for working with the container, accessing the libraries for the IDE without installing the IDE in the container itself?

+4
source share
3 answers

- , , libs IDE, IDE

, IDE . IDE ​​ , .

IDE, :

  • , IDE
  • .
  • , IDE .

Python IDE vim:

: Ubuntu 14.04.

PyCharm

+2

python?

, , , , (, "requirements.txt", ).

, .

0

You can also try using cloud-based IDEs such as eclipse che or cloud9.

It supports dockers and runs in a browser.

Update: I just found out that eclipse che and cloud9 are not mature enough to run Java applications, so you can try Intellij: https://github.com/marioluan/java-data-structures

0
source

All Articles