aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPamela Fox <pamela.fox@gmail.com>2023-01-24 02:18:50 +0300
committerGitHub <noreply@github.com>2023-01-24 02:18:50 +0300
commitbebf87e33cc792d448cfc34ccac64097b18243b6 (patch)
tree22df8ec0e4241b3d9b76b4dda9bb6f58c6361d40 /src
parent7a3a9c5fcaa59cf4d7dbbcece47094a6d642a9b0 (diff)
Add more detail to note about architecture (#416)
* Add more detail to note about architecture * Update src/docker-in-docker/NOTES.md Co-authored-by: Samruddhi Khandale <skhandale@microsoft.com> * Update src/docker-in-docker/NOTES.md Co-authored-by: Samruddhi Khandale <skhandale@microsoft.com> Co-authored-by: Samruddhi Khandale <skhandale@microsoft.com>
Diffstat (limited to 'src')
-rw-r--r--src/docker-in-docker/NOTES.md7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/docker-in-docker/NOTES.md b/src/docker-in-docker/NOTES.md
index a22e61c..b8156f8 100644
--- a/src/docker-in-docker/NOTES.md
+++ b/src/docker-in-docker/NOTES.md
@@ -2,8 +2,11 @@
This docker-in-docker Dev Container Feature is roughly based on the [official docker-in-docker wrapper script](https://github.com/moby/moby/blob/master/hack/dind) that is part of the [Moby project](https://mobyproject.org/). With this in mind:
* As the name implies, the Feature is expected to work when the host is running Docker (or the OSS Moby container engine it is built on). It may be possible to get running in other container engines, but it has not been tested with them.
-* The host and the container must be running on the same chip architecture. You will not be able to use it with an emulated x86 image with Docker Desktop on an Apple Silicon Mac, for example.
-
+* The host and the container must be running on the same chip architecture. You will not be able to use it with an emulated x86 image with Docker Desktop on an Apple Silicon Mac, like in this example:
+ ```
+ FROM --platform=linux/amd64 mcr.microsoft.com/devcontainers/typescript-node:16
+ ```
+ See [Issue #219](https://github.com/devcontainers/features/issues/219) for more details.
## OS Support