DEV Community

Tomoya Oda
Tomoya Oda

Posted on

1

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)

Eliminate Context Switching and Maximize Productivity

Pieces.app

Pieces Copilot is your personalized workflow assistant, working alongside your favorite apps. Ask questions about entire repositories, generate contextualized code, save and reuse useful snippets, and streamline your development process.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay