Skip to content
This repository has been archived by the owner on Nov 30, 2023. It is now read-only.

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Chuxel committed Mar 24, 2019
1 parent 21e95dd commit 31ccd00
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions containers/docker-in-docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@

*Illustrates how you can use it to access your local Docker install from inside the a dev container by simply volume mounting the Docker unix socket. This variation uses `runArgs` and a `Dockerfile` to do the volume mounting*

> **Note:** You can also check out the [Docker Compose](../docker-in-docker-compose) variation of this same definition.
| Metadata | Value |
|----------|-------|
| *Contributors* | The VS Code team |
| *Definition type* | Dockerfile |
| *Languages, platforms* | Any |

> **Note:** There is also a [Docker Compose](../docker-in-docker-compose) variation of this same definition.
## Description

Dev containers can be useful for all types of applications including those that also deploy into a container based-environment. While you can directly build and run the application inside the dev container you create, you may also want to test it by deploying a built container image into your local Docker Desktop instance without affecting your dev container. This example illustrates how you can do this by running CLI commands and using the [Docker VS Code extension](https://marketplace.visualstudio.com/items?itemName=PeterJausovec.vscode-docker) right from inside your dev container.
Expand Down Expand Up @@ -44,4 +44,4 @@ The trick that makes this work is as follows:
"runArgs": ["-v","/var/run/docker.sock:/var/run/docker.sock"]
```

That's it!
That's it!

0 comments on commit 31ccd00

Please sign in to comment.