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

Commit

Permalink
Tweak comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Chuxel committed Mar 24, 2019
1 parent c8f0410 commit b27be2e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion containers/docker-in-docker-compose/dev-container.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ FROM ubuntu:1804
RUN apt-get update \
&& apt-get install -y git

# Install Docker CE CLI
# Install Docker CE CLI. If you choose a Debian based image, update https://download.docker.com/linux/ubuntu
# to https://download.docker.com/linux/debian on the third line below.
RUN apt-get install -y apt-transport-https ca-certificates curl gnupg-agent software-properties-common \
&& curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - \
&& add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" \
Expand Down
3 changes: 2 additions & 1 deletion containers/docker-in-docker/dev-container.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ FROM ubuntu:1804
RUN apt-get update \
&& apt-get install -y git

# Install Docker CE CLI
# Install Docker CE CLI. If you choose a Debian based image, update https://download.docker.com/linux/ubuntu
# to https://download.docker.com/linux/debian on the third line below.
RUN apt-get install -y apt-transport-https ca-certificates curl gnupg-agent software-properties-common \
&& curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - \
&& add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" \
Expand Down
3 changes: 2 additions & 1 deletion containers/kubernetes-helm/dev-container.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ FROM ubuntu:1804
RUN apt-get update \
&& apt-get install -y git

# Install Docker CE CLI
# Install Docker CE CLI. If you choose a Debian based image, update https://download.docker.com/linux/ubuntu
# to https://download.docker.com/linux/debian on the third line below.
RUN apt-get install -y apt-transport-https ca-certificates curl gnupg-agent software-properties-common \
&& curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - \
&& add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" \
Expand Down

0 comments on commit b27be2e

Please sign in to comment.