This commit is contained in:
Martin Simecek 2022-09-09 14:08:07 +02:00
Родитель 1b3f2739d4
Коммит d8a7f6ac6c
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 0FD551D5239CD0A6
2 изменённых файлов: 31 добавлений и 0 удалений

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

@ -0,0 +1,5 @@
FROM mcr.microsoft.com/vscode/devcontainers/base:0-bullseye
# [Optional] Uncomment this section to install additional packages.
# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
# && apt-get -y install --no-install-recommends <your-package-list-here>

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

@ -0,0 +1,26 @@
{
"name": "Documentation editing",
"dockerFile": "Dockerfile",
// Configure tool-specific properties.
"customizations": {
// Configure properties specific to VS Code.
"vscode": {
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"yzhang.markdown-all-in-one",
"streetsidesoftware.code-spell-checker",
"docsmsft.docs-authoring-pack"
]
}
},
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],
// Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "uname -a",
// Comment out to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
"remoteUser": "vscode"
}