Visual Studio Code

Extension

Yaml from Red Hat

  • Define kubernettes as format for yaml files

    • Click the gear icon, find and edit yaml schema options by adding kubernettes secion below:

      {
          "yaml.schemas": {
              "kubernetes": "*.yaml"
          }
      }

Config SSH login to Github

# .ssh/config
Host github.com
  User git
  IdentityFile ~/.ssh/id_rsa
  IdentitiesOnly yes

Building Code Server Container

Create folder and env file

  • mkdir codeserver

  • vi .env

Create docker-compose.yml file

Last updated