mirror of
https://github.com/yeasy/docker_practice.git
synced 2024-11-24 07:23:38 +00:00
Add vscode devcontainer
Signed-off-by: Kang Huaishuai <khs1994@khs1994.com>
This commit is contained in:
parent
fc8b8867af
commit
1b2c480a55
20
.devcontainer/devcontainer.json
Normal file
20
.devcontainer/devcontainer.json
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"image": "yeasy/docker_practice:latest",
|
||||||
|
"mounts": [
|
||||||
|
"source=dp-code-remote-cache,target=/root/.vscode-server,type=volume"
|
||||||
|
],
|
||||||
|
"settings": {
|
||||||
|
"terminal.integrated.shell.linux": "/bin/sh"
|
||||||
|
},
|
||||||
|
"forwardPorts": [
|
||||||
|
4000
|
||||||
|
],
|
||||||
|
"runArgs": [
|
||||||
|
"--cap-add=SYS_ADMIN"
|
||||||
|
],
|
||||||
|
"postStartCommand": [
|
||||||
|
"sh",
|
||||||
|
"-cx",
|
||||||
|
"pwd ; mkdir -p /workspaces/docker_practice/node_modules; mkdir -p /workspaces/docker_practice/_book; mount --bind /srv/gitbook/node_modules /workspaces/docker_practice/node_modules ; mount --bind /mnt /workspaces/docker_practice/_book"
|
||||||
|
]
|
||||||
|
}
|
4
.github/workflows/check-link.yml
vendored
4
.github/workflows/check-link.yml
vendored
@ -1,8 +1,8 @@
|
|||||||
name: check-link
|
name: check-link
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
# push:
|
||||||
pull_request:
|
# pull_request:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
@ -13,6 +13,9 @@
|
|||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "echo \"Error: no test specified\" && exit 1",
|
"test": "echo \"Error: no test specified\" && exit 1",
|
||||||
|
"gitbook:help": "gitbook help",
|
||||||
|
"gitbook:build": "gitbook build",
|
||||||
|
"gitbook:serve": "gitbook serve",
|
||||||
"vuepress:build": "npx vuepress build"
|
"vuepress:build": "npx vuepress build"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
|
Loading…
Reference in New Issue
Block a user