DEV Community

Tomoya Oda
Tomoya Oda

Posted on

Configuring dind (docker in docker) with VSCode Remote Development

It was as simple as adding a single line to the devcontainer.json configuration file.

  • devcontainer.json
    "features":{
        "ghcr.io/devcontainers/features/docker-in-docker:2": {}
    },
Enter fullscreen mode Exit fullscreen mode

There are various features available for dev containers, such as AWS CLI and Python.
It seems that for future container development, there may no longer be no need for trial and error with creating Dockerfiles.

https://containers.dev/features

Top comments (0)