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

Commit

Permalink
Small typos and corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
Chuxel committed Apr 23, 2019
1 parent 06cb262 commit 362b015
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 7 deletions.
1 change: 0 additions & 1 deletion containers/docker-existing-docker-compose/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,3 @@ Follow these steps to use it:
Copyright (c) Microsoft Corporation. All rights reserved.

Licensed under the MIT License. See [LICENSE](https://github.com/Microsoft/vscode-dev-containers/blob/master/LICENSE)

2 changes: 1 addition & 1 deletion containers/docker-in-docker-compose/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ That's it!
There are no special setup steps are required, but note that the included `.devcontainer/Dockerfile` can be altered to work with other Debian/Ubuntu-based container images such as `node` or `python`. Just, update the `FROM` statement to reference the new base image. For example:

```Dockerfile
FROM node:8
FROM node:lts
```

Beyond that, just follow these steps to use the definition:
Expand Down
2 changes: 1 addition & 1 deletion containers/docker-in-docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ That's it!
There are no special setup steps are required, but note that the included `.devcontainer/Dockerfile` can be altered to work with other Debian/Ubuntu-based container images such as `node` or `python`. Just, update the `FROM` statement to reference the new base image. For example:

```Dockerfile
FROM node:8
FROM node:lts
```

Beyond that, just follow these steps to use the definition:
Expand Down
1 change: 0 additions & 1 deletion containers/kubernetes-helm/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ FROM debian:9
# Install git, process tools
RUN apt-get update && apt-get -y install git procps


# Install Docker CE CLI
RUN apt-get install -y apt-transport-https ca-certificates curl gnupg-agent software-properties-common lsb-release \
&& curl -fsSL https://download.docker.com/linux/$(lsb_release -is | tr '[:upper:]' '[:lower:]')/gpg | apt-key add - \
Expand Down
6 changes: 3 additions & 3 deletions containers/kubernetes-helm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ You can adapt your own existing development container Dockerfile to support this

```Dockerfile
# Install Docker CE CLI
RUN apt-get install -y apt-transport-https ca-certificates curl gnupg-agent software-properties-common \
RUN apt-get install -y apt-transport-https ca-certificates curl gnupg-agent software-properties-common lsb-release \
&& curl -fsSL https://download.docker.com/linux/$(lsb_release -is | tr '[:upper:]' '[:lower:]')/gpg | apt-key add - \
&& add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/$(lsb_release -is | tr '[:upper:]' '[:lower:]') $(lsb_release -cs) stable" \
&& apt-get update \
Expand Down Expand Up @@ -69,7 +69,7 @@ That's it!
There are no special setup steps are required, but note that the included `.devcontainer/Dockerfile` can be altered to work with other Debian/Ubuntu-based container images such as `node` or `python`. Just, update the `FROM` statement to reference the new base image. For example:

```Dockerfile
FROM node:8
FROM node:lts
```

In addition, if you want to **disable sync'ing** local Kubernetes config into the container, remove `"-e", "SYNC_LOCALHOST_KUBECONFIG=true",` from `runArgs` in `.devcontainer/devcontainer.json`.
Expand All @@ -95,7 +95,7 @@ Follow the steps below for your operating system to use the definition.
3. Start VS Code and open your project folder.

6. After following step 2 or 3, the contents of the `.devcontainer` folder in your project can be adapted to meet your needs.

7. Finally, press <kbd>F1</kbd> and run **Remote-Containers: Reopen Folder in Container** to start using the definition.

8. [Optional] If you want to use [Helm](https://helm.sh), open a VS Code terminal and run:
Expand Down

0 comments on commit 362b015

Please sign in to comment.