Tag: docker

VS Code Remote Development with Docker Compose: Developing services in Standalone and Integrated Modes

May 26, 2020 · 12 min read

VS Code remote development is a brilliant feature from the VS Code team. Using the extensions available in the VS Code remote extension pack, you can develop your applications in an external development environment viz. a remote server (through SSH), containers, and WSL. The premise of the three modes of development is the same. The application code is stored either on your local system (on container and WSL through volume mount) or remote server (through SSH), and the local instance of the VS Code attaches itself to the external system through an exposed port (container and WSL), or SSH tunnel (remote server).

#programming#docker

Read more of VS Code Remote Development with Docker Compose: Developing services in Standalone and Integrated Modes