diff options
author | Pamela Fox <pamela.fox@gmail.com> | 2023-01-24 02:18:50 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-24 02:18:50 +0300 |
commit | bebf87e33cc792d448cfc34ccac64097b18243b6 (patch) | |
tree | 22df8ec0e4241b3d9b76b4dda9bb6f58c6361d40 /src | |
parent | 7a3a9c5fcaa59cf4d7dbbcece47094a6d642a9b0 (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.md | 7 |
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 |