Running your code editor in a remote container and accessing it via HTTPS

In this section, we will show how you can use Visual Studio Code to enable remote development inside a container. This is interesting when you are limited in what you can run on your workstation. Let's follow these steps:

  1. Download and extract the latest version of code-server. You can find out the URL by navigating to https://github.com/cdr/code-server/releases/latest. At the time of writing, it is 1.1156-vsc1.33.1:
$ VERSION=<version>$ wget https://github.com/cdr/code-server/releases/download/${VERSION}/code-server${VERSION}-linux-x64.tar.gz$ tar -xvzf code-server${VERSION}-linux-x64.tar.gz

Make sure to replace <version> with your specific version.

  1. Navigate to the ...

Get Learn Docker - Fundamentals of Docker 19.x - Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.