updated devcontainers

هذا الالتزام موجود في:
Chris Ayers
2023-10-04 16:29:04 +00:00
الأصل a7358952f5
التزام d2d3fa5839
2 ملفات معدلة مع 41 إضافات و15 حذوفات

عرض الملف

@@ -1,7 +1,7 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the // For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/debian // README at: https://github.com/devcontainers/templates/tree/main/src/debian
{ {
"name": "Debian", "name": "GitHub Actions",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/base:bullseye", "image": "mcr.microsoft.com/devcontainers/base:bullseye",
"features": { "features": {
@@ -20,25 +20,12 @@
"customizations": { "customizations": {
// Configure properties specific to VS Code. // Configure properties specific to VS Code.
"vscode": { "vscode": {
"settings": {
"markdown.marp.enableHtml": true,
"markdown.marp.themes": [
"./slides/themes/custom.css",
"./slides/themes/custom-default.css",
"./slides/themes/custom-gaia.css",
"./slides/themes/custom-uncover.css"
]
},
"extensions": [ "extensions": [
"github.vscode-github-actions", "github.vscode-github-actions",
"github.vscode-pull-request-github", "github.vscode-pull-request-github",
"github.copilot", "github.copilot",
"redhat.vscode-yaml", "redhat.vscode-yaml",
"yzhang.markdown-all-in-one", "streetsidesoftware.code-spell-checker"
"streetsidesoftware.code-spell-checker",
"marp-team.marp-vscode",
"ms-azuretools.vscode-bicep",
"bierner.markdown-mermaid"
] ]
} }
}, },

عرض الملف

@@ -0,0 +1,39 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/ubuntu
{
"name": "Slides",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/base:bullseye",
"features": {
},
// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},
// 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",
"postStartCommand": "git config --global --add safe.directory ${containerWorkspaceFolder}",
// Configure tool-specific properties.
"customizations": {
"vscode": {
"settings": {
"markdown.marp.enableHtml": true,
"markdown.marp.themes": [
"./slides/themes/custom.css",
"./slides/themes/custom-default.css",
"./slides/themes/custom-gaia.css",
"./slides/themes/custom-uncover.css"
]
},
"extensions": [
"streetsidesoftware.code-spell-checker",
"yzhang.markdown-all-in-one",
"marp-team.marp-vscode",
"bierner.markdown-mermaid",
"hediet.vscode-drawio"
]
}
}
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}