Sublime plugins run in docker container

I'm new to Docker, so not sure if I missed something basic. I like the idea of ​​creating different development platforms in different Docker containers so that my host box is relatively clean. I see that this is possible, but in most examples it includes people who use vim when ssh'd in a container to edit code. I wanted to use the sublime, I know that I can display a volume that allows me to edit the source code outside the container. The part that I don’t see how to configure is plugin support, for example GoSublime launches tools like GoCode. Is it possible for these tools to run inside the container while Sublime is running on the host?

thank!

+4
source share
3 answers

If the editor is in the container, it should be able to execute most binary files (there are some restrictions, for example, which do not require certain insecure permissions that allow the guest to easily escape).

If you want the editor to run the tools installed in the container, the editor itself will need to support their launch using docker.

, , , , . , , . https://docs.docker.com/reference/builder/, , .

0

Sublime , , . .

, , . .

0

:

Docker - Docker, http://domeide.imtqy.com

  • Ctrl-B (Win / Linux) or Cmd-B (OSX) to execute code
0
source

All Articles