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

Commit

Permalink
Update summaries
Browse files Browse the repository at this point in the history
  • Loading branch information
Chuxel committed Apr 16, 2019
1 parent ca238d0 commit e4728a8
Show file tree
Hide file tree
Showing 36 changed files with 43 additions and 44 deletions.
2 changes: 1 addition & 1 deletion containers/azure-cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Summary

*A basic dev container definitions that demonstrates installation and use of the Azure CLI in a container.*
*Debian container with the Azure CLI, related extensions, and dependencies.*

| Metadata | Value |
|----------|-------|
Expand Down
2 changes: 1 addition & 1 deletion containers/azure-functions-dotnetcore-2.1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Summary

*A basic dev container definition for building Node.js based Azure Functions in a container. Includes everything you need to get up and running.*
*Develop Azure Functions in C# - Includes NET Core 2.1, the Azure Functions SDK, and related extensions and dependencies.*

| Metadata | Value |
|----------|-------|
Expand Down
2 changes: 1 addition & 1 deletion containers/azure-functions-dotnetcore-latest/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Summary

*A basic dev container definition for building Node.js based Azure Functions in a container. Includes everything you need to get up and running.*
*Develop Azure Functions in C# - Includes NET Core (latest), the Azure Functions SDK, and related extensions and dependencies.*

| Metadata | Value |
|----------|-------|
Expand Down
2 changes: 1 addition & 1 deletion containers/azure-functions-node-8/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Summary

*A basic dev container definition for building Node.js based Azure Functions in a container. Includes everything you need to get up and running.*
*Get going quickly with Azure Functions with Node.js. Includes Azure Functions SDK, Node.js 8, nvm, the Azure CLI, and related extensions and dependencies.*

| Metadata | Value |
|----------|-------|
Expand Down
2 changes: 1 addition & 1 deletion containers/azure-functions-node-lts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Summary

*A basic dev container definition for building Node.js based Azure Functions in a container. Includes everything you need to get up and running.*
*Develop Azure Functions in Node.js - Includes Node.js (latest LTS), eslint, the Azure Functions SDK, and related extensions and dependencies.*

| Metadata | Value |
|----------|-------|
Expand Down
4 changes: 2 additions & 2 deletions containers/azure-hdinsight-python-3/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Azure HDInsight w/Python 3
# Azure HDInsight & Python 3

## Summary

*A basic dev container definition for using Azure HDInsight in a container. Includes everything you need to get up and running.*
*Get going quickly with Azure HDInsight and Python. Includes Python and related extensions and dependencies.*

| Metadata | Value |
|----------|-------|
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,13 @@ FROM python:3
# Install git, process tools
RUN apt-get update && apt-get -y install git procps

# [Optional] Install Docker CE - Remove if you won't be doing local testing
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" \
# Install Docker CE - ** COMMENT OUT IF YOU WILL ONLY RUN LOCAL OR IN AZURE **
RUN apt-get install -y apt-transport-https ca-certificates curl gnupg-agent software-properties-common \
&& curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add - \
&& add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/debian $(lsb_release -cs) stable" \
&& apt-get update \
&& apt-get install -y docker-ce-cli


# Install pylint
RUN pip install pylint

Expand Down
4 changes: 2 additions & 2 deletions containers/azure-machine-learning-python-3/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Azure Machine Learning w/Python 3
# Azure Machine Learning & Python 3

## Summary

*A basic dev container definition for using Azure Machine Learning in a container. Includes everything you need to get up and running.*
*Use Azure Machine Learning and Python - includes Python, the Docker CLI (for running locally), and related extensions and dependencies.*

| Metadata | Value |
|----------|-------|
Expand Down
2 changes: 1 addition & 1 deletion containers/azure-terraform/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Summary

*A basic dev container that demonstrates the installation and use of Terraform in a container. Includes everything you need to get up and running.*
*Get going quickly with Terraform in Azure. Includes Terraform, the Azure CLI, the Docker CLI (for testing locally), Node.js for Cloud Shell, and related extensions and dependencies.*

| Metadata | Value |
|----------|-------|
Expand Down
2 changes: 1 addition & 1 deletion containers/cpp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Summary

*A basic dev container definition for building C++ apps in container. Includes everything you need to get up and running.*
*Develop C++ applications on Linux - includes Debian 9 C++ build tools, but can be updated to use other Linux base containers.*

| Metadata | Value |
|----------|-------|
Expand Down
2 changes: 1 addition & 1 deletion containers/dart-web/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Summary

*A basic dev container definition for developing web applications using Dart in a container. Includes everything you need to get up and running.*
*Develop Dart based web applications - includes Dart, needed extensions, and dependencies.*

| Metadata | Value |
|----------|-------|
Expand Down
4 changes: 2 additions & 2 deletions containers/debian-9-git/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Ubuntu 18.04 + Git
# Debian 9 + Git

## Summary

*A starter container definition with Ubuntu 18.04 and Git installed.*
*Simple Debian 9 container with Git installed.*

| Metadata | Value |
|----------|-------|
Expand Down
2 changes: 1 addition & 1 deletion containers/docker-existing-docker-compose/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Summary

*Illustrates how you can reuse an existing docker-compose.yml for your dev container.*
*Extend an existing docker-compose.yml for use in a dev container.*

| Metadata | Value |
|----------|-------|
Expand Down
2 changes: 1 addition & 1 deletion containers/docker-existing-dockerfile/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Summary

*Illustrates you can reuse an existing Dockerfile for your dev container.*
*Sample illustrating reuse of an existing Dockefile.*

| Metadata | Value |
|----------|-------|
Expand Down
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 @@ -2,7 +2,7 @@

## Summary

*Illustrates how you can use it to access your local Docker install from inside a dev container by simply volume mounting the Docker unix socket. This variation uses Docker Compose to do the volume mounting.*
*Use Docker Compose to configure access to your local Docker install from inside a container.*

| Metadata | Value |
|----------|-------|
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 @@ -2,7 +2,7 @@

## Summary

*Illustrates how you can use it to access your local Docker install from inside a dev container by simply volume mounting the Docker unix socket. This variation uses `runArgs` in `devContainer.json` to do the volume mounting.*
*Access your local Docker install from inside a dev container.*

| Metadata | Value |
|----------|-------|
Expand Down
2 changes: 1 addition & 1 deletion containers/dotnetcore-2.1-fsharp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Summary

*A basic dev container definition for using F# in a container. Includes everything you need to get up and running.*
*Develop F# and .NET Core 2.1 based applications - includes all needed SDKs, extensions, and dependencies.*

| Metadata | Value |
|----------|-------|
Expand Down
2 changes: 1 addition & 1 deletion containers/dotnetcore-2.1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Summary

*A basic dev container definition for developing .NET Core applications in a container. Includes everything you need to get up and running.*
*Develop C# and .NET Core 2.1 based applications - includes all needed SDKs, extensions, and dependencies.*

| Metadata | Value |
|----------|-------|
Expand Down
2 changes: 1 addition & 1 deletion containers/dotnetcore-latest-fsharp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Summary

*A basic dev container definition for using F# in a container. Includes everything you need to get up and running.*
*Develop F# and .NET Core (latest) based applications - includes all needed SDKs, extensions, and dependencies.*

| Metadata | Value |
|----------|-------|
Expand Down
4 changes: 2 additions & 2 deletions containers/dotnetcore-latest/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# C# (.NET Core 2.1)
# C# (latest .NET Core)

## Summary

*A basic dev container definition for developing .NET Core applications in a container. Includes everything you need to get up and running.*
*Develop C# and .NET Core (latest) based applications - includes all needed SDKs, extensions, and dependencies.*

| Metadata | Value |
|----------|-------|
Expand Down
2 changes: 1 addition & 1 deletion containers/go/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Summary

*A basic dev container definition for developing Go applications in a container. Includes everything you need to get up and running.*
*Develop Go based applications - includes Go, common tools, extensions, and dependencies.*

| Metadata | Value |
|----------|-------|
Expand Down
2 changes: 1 addition & 1 deletion containers/java-8-maven/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Licensed under the MIT License. See LICENSE in the project root for license information.
#-----------------------------------------------------------------------------------------

FROM maven:3.6-jdk-8-slim
FROM maven:3.6-jdk-8

# Install git, process tools
RUN apt-get update && apt-get -y install git procps
Expand Down
2 changes: 1 addition & 1 deletion containers/java-8-maven/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Summary

*A basic dev container definition for developing Java applications in a container. Includes the JDK along with any dependencies Maven requires.*
*Develop Java 8 based applications - includes the JDK along with any dependencies Maven requires.*

| Metadata | Value |
|----------|-------|
Expand Down
2 changes: 1 addition & 1 deletion containers/javascript-node-8/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Summary

*A basic dev container definition for developing Node.js applications in a container along with the Yarn package manager. Includes everything you need to get up and running.*
*Develop Node.js 8 based applications - includes Node.js, eslint, and yarn.*

| Metadata | Value |
|----------|-------|
Expand Down
2 changes: 1 addition & 1 deletion containers/javascript-node-lts-mongo/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Summary

*A basic multi-container dev container definition for building Node.js applications in a container that rely on a Mongo DB. Includes everything you need to get up and running.*
*Develop applications in Node.js and Mongo DB - includes Node.js, eslint, and yarn in a container linked to a Mongo DB.*

| Metadata | Value |
|----------|-------|
Expand Down
2 changes: 1 addition & 1 deletion containers/javascript-node-lts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Summary

*A basic dev container definition for developing Node.js applications in a container along with the yarn package manager. Includes everything you need to get up and running.*
*Develop Node.js (latest LTS) based applications - includes Node.js, eslint, and yarn.*

| Metadata | Value |
|----------|-------|
Expand Down
2 changes: 1 addition & 1 deletion containers/kubernetes-helm/.devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "Kubernetes",
"name": "Kubernetes & Helm",
"dockerFile": "Dockerfile",
"extensions": [
"peterjausovec.vscode-docker",
Expand Down
2 changes: 1 addition & 1 deletion containers/kubernetes-helm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Summary

*Illustrates how you can access a local (or remote) Kubernetes cluster from inside a dev container. Includes the Docker CLI, kubectl, and Helm.*
*Access a local (or remote) Kubernetes cluster from inside a dev container - includes the Docker CLI, kubectl, and Helm.*

| Metadata | Value |
|----------|-------|
Expand Down
2 changes: 1 addition & 1 deletion containers/markdown/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Summary

*A basic dev container definition for editing markdown files in a container.*
*A simple container for editing markdown.*

| Metadata | Value |
|----------|-------|
Expand Down
2 changes: 1 addition & 1 deletion containers/plantuml/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Summary

*A basic dev container definition for editing PlantUML in a container that includes Java and GraphViz and the PlantUML extension.*
*Use PlantUML without installing all the dependencies locally - includes Java, GraphViz, and the PlantUML extension.*

| Metadata | Value |
|----------|-------|
Expand Down
2 changes: 1 addition & 1 deletion containers/ruby-2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Summary

*A basic dev container definition for developing Ruby applications in a container. Includes everything you need to get up and running.*
*Develop Ruby based applications - includes everything you need to get up and running.*

| Metadata | Value |
|----------|-------|
Expand Down
2 changes: 1 addition & 1 deletion containers/rust/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Summary

*A basic dev container definition for developing Rust applications in a container. Includes everything you need to get up and running.*
*Develop Rust based applications - includes everything you need to get up and running.*

| Metadata | Value |
|----------|-------|
Expand Down
2 changes: 1 addition & 1 deletion containers/swift-4/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Summary

*A basic dev container definition for developing Swift applications in a container. Includes everything you need to get up and running.*
*Develop Swift based applications - includes everything you need to get up and running.*

| Metadata | Value |
|----------|-------|
Expand Down
2 changes: 1 addition & 1 deletion containers/typescript-node-8/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Summary

*A basic dev container definition for building Node.js applications in TypeScript in a container and using the yarn package manager. Includes everything you need to get up and running like Node.js and the TypeScript compiler.*
*Develop Node.js based applications in TypeScript - includes Node.js, tslint, yarn, and the TypeScript compiler.*

| Metadata | Value |
|----------|-------|
Expand Down
2 changes: 1 addition & 1 deletion containers/typescript-node-lts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Summary

*A basic dev container definition for building Node.js applications in TypeScript in a container and using the yarn package manager. Includes everything you need to get up and running like Node.js and the TypeScript compiler.*
*Develop Node.js 8 based applications in TypeScript - includes Node.js, tslint, yarn, and the TypeScript compiler.*

| Metadata | Value |
|----------|-------|
Expand Down
2 changes: 1 addition & 1 deletion containers/ubuntu-18.04-git/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Summary

*A starter container definition with Ubuntu 18.04 and Git installed.*
*Simple Ubuntu 18.04 container with Git installed.*

| Metadata | Value |
|----------|-------|
Expand Down

0 comments on commit e4728a8

Please sign in to comment.