Markdown, repo dev container, issue templates
This commit is contained in:
Родитель
9fa731430a
Коммит
f12dee95e0
|
@ -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.
|
|
@ -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
|
||||
-->
|
|
@ -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.
|
|
@ -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/*
|
||||
|
|
@ -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
|
|
@ -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"
|
||||
]
|
||||
}
|
Загрузка…
Ссылка в новой задаче