enigma-bbs/.devcontainer/devcontainer.json

25 lines
874 B
JSON
Raw Permalink Normal View History

2023-08-27 17:25:36 +00:00
{
"name": "Basic Node.js",
"build": { "dockerfile": "Dockerfile" },
2023-08-28 00:04:17 +00:00
"remoteUser": "root",
"forwardPorts": [8888, 4000],
"postCreateCommand": "gem install jekyll bundler && /bin/rm -rf node_modules && npm install && cd docs && bundle install && cd ..",
2023-08-27 17:25:36 +00:00
"features": {
"ghcr.io/devcontainers/features/python:1": {
"installTools": true,
2023-08-28 00:04:17 +00:00
"version": "latest"
2023-08-27 17:25:36 +00:00
},
"ghcr.io/devcontainers-contrib/features/curl-apt-get:1": {},
"ghcr.io/jungaretti/features/ripgrep:1": {},
2023-08-28 00:04:17 +00:00
"ghcr.io/warrenbuckley/codespace-features/sqlite:1": {},
"ghcr.io/devcontainers/features/ruby:1": {
"version": "3.1"
}
2023-08-28 18:08:54 +00:00
},
"customizations": {
"vscode": {
"extensions": ["ms-azuretools.vscode-docker","alexcvzz.vscode-sqlite","yzhang.markdown-all-in-one", "DavidAnson.vscode-markdownlint", "christian-kohler.npm-intellisense", "dbaeumer.vscode-eslint", "bierner.markdown-yaml-preamble"]
}
2023-08-27 17:25:36 +00:00
}
}