This commit is contained in:
Chuck Lantz 2019-03-24 12:21:37 -07:00 коммит произвёл GitHub
Родитель 1e7837b95e
Коммит 2f453617a7
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -28,7 +28,7 @@ FROM node:8
The trick that makes this work is as follows:
1. Install the Docker CLI in the container. From `dev-container.dockerfile`:
1. First, install the Docker CLI in the container. From `dev-container.dockerfile`:
```Dockerfile
# Install Docker CE CLI
@ -38,7 +38,7 @@ The trick that makes this work is as follows:
&& apt-get update \
&& apt-get install -y docker-ce-cli
```
2. Forward the Docker socket. From `devContainer.json`:
2. Then just forward the Docker socket by mounting it in the container. From `devContainer.json`:
```json
"runArgs": ["-v","/var/run/docker.sock:/var/run/docker.sock"]