-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdevcontainer.json
More file actions
25 lines (25 loc) · 784 Bytes
/
devcontainer.json
File metadata and controls
25 lines (25 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"name": "Nvim: Devcontainer CLI",
"build": {
"dockerfile": "../Dockerfile",
"args": {
"USER_ID": 1000,
"GROUP_ID": 1000
}
},
"workspaceMount": "source=${localWorkspaceFolder},target=/home/my-app/.local/share/nvim/lazy/nvim-devcontainer-cli/,type=bind",
"workspaceFolder": "/home/my-app/.local/share/nvim/lazy/nvim-devcontainer-cli/",
"remoteUser": "my-app",
"containerEnv": {
"DEV_WORKSPACE": "${containerWorkspaceFolder}",
},
"mounts": [
// unfortunately the runner for ci will fail with this mount so comment it out
// "type=bind,source=${localEnv:HOME}/.ssh,target=/home/my-app/.ssh,readonly",
],
"features": {
"ghcr.io/rocker-org/devcontainer-features/apt-packages:1": {
"packages": "neovim,stow,zsh,fzf,python3-pip"
}
}
}