Markdown, repo dev container, issue templates

This commit is contained in:
Chuck Lantz 2019-03-28 09:27:15 -07:00
Родитель 9fa731430a
Коммит f12dee95e0
8 изменённых файлов: 109 добавлений и 0 удалений

21
.github/ISSUE_TEMPLATE/bug_report.md поставляемый Normal file
Просмотреть файл

@ -0,0 +1,21 @@
---
name: Bug report
about: Create a report to help us improve
---
<!-- 🚨 Please only include bugs related to Dev Container Definitions here. 🚨 Other locations:
VS Code Remote Development extensions: http://github.com/Microsoft/vscode-remote-release
VS Code OSS: http://github.com/Microsoft/vscode
-->
<!-- Please search existing issues to avoid creating duplicates. -->
<!-- Also please test using the latest insiders build to make sure your issue has not already been fixed: https://code.visualstudio.com/insiders/ -->
- VSCode Version:
- Local OS Version:
- Name of Dev Container Definition with Issue:
Steps to Reproduce:
1.
2.

10
.github/ISSUE_TEMPLATE/feature_request.md поставляемый Normal file
Просмотреть файл

@ -0,0 +1,10 @@
---
name: Feature request
about: Suggest an idea for this project
---
<!-- 🚨 Please only include feature requests related to Dev Container Definitions here. 🚨 Other locations:
VS Code Remote Development extensions: http://github.com/Microsoft/vscode-remote-release
VS Code OSS: http://github.com/Microsoft/vscode
-->

9
.github/ISSUE_TEMPLATE/question.md поставляемый Normal file
Просмотреть файл

@ -0,0 +1,9 @@
---
name: Question
about: The issue tracker is not for questions. Please ask questions on https://stackoverflow.com/questions/tagged/visual-studio-code.
---
🚨 The issue tracker is not for questions 🚨
If you have a question, please ask it on https://stackoverflow.com/questions/tagged/visual-studio-code.

25
.vscode/Dockerfile поставляемый Normal file
Просмотреть файл

@ -0,0 +1,25 @@
#-----------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See LICENSE in the project root for license information.
#-----------------------------------------------------------------------------------------
FROM ubuntu:bionic
# Install git
RUN apt-get update \
&& apt-get install -y git
# 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" \
&& apt-get update \
&& apt-get install -y docker-ce-cli
# Clean up
RUN apt-get autoremove -y \
&& apt-get clean -y \
&& rm -rf /var/lib/apt/lists/*

14
.vscode/devContainer.json поставляемый Normal file
Просмотреть файл

@ -0,0 +1,14 @@
{
"name": "Markdown Editing",
"dockerFile": ".vscode/Dockerfile",
"extensions": [
"yzhang.markdown-all-in-one",
"streetsidesoftware.code-spell-checker",
"DavidAnson.vscode-markdownlint",
"esbenp.prettier-vscode",
"PeterJausovec.vscode-docker",
"eamodio.gitlens",
"mutantdino.resourcemonitor"
],
"runArgs": ["-v","/var/run/docker.sock:/var/run/docker.sock"]
}

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

@ -0,0 +1,15 @@
#-----------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See LICENSE in the project root for license information.
#-----------------------------------------------------------------------------------------
FROM ubuntu:bionic
# Install git
RUN apt-get update \
&& apt-get install -y git
# Clean up
RUN apt-get autoremove -y \
&& apt-get clean -y \
&& rm -rf /var/lib/apt/lists/*

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

@ -0,0 +1,5 @@
README.md
test-project
.vscode
!.vscode/devContainer.json
!.vscode/devcontainer.json

10
containers/markdown/.vscode/devContainer.json поставляемый Normal file
Просмотреть файл

@ -0,0 +1,10 @@
{
"name": "Markdown Editing",
"dockerFile": ".devcontainer/Dockerfile",
"extensions": [
"yzhang.markdown-all-in-one",
"streetsidesoftware.code-spell-checker",
"DavidAnson.vscode-markdownlint",
"esbenp.prettier-vscode"
]
}