|
| 1 | +{ |
| 2 | + "name": "VM Devcontainer", |
| 3 | + "build": { |
| 4 | + "dockerfile": "Dockerfile", |
| 5 | + "context": "..", |
| 6 | + "args": { |
| 7 | + "VARIANT": "3.10", |
| 8 | + "INSTALL_NODE": "true", |
| 9 | + "NODE_VERSION": "18.7" |
| 10 | + } |
| 11 | + }, |
| 12 | + "customizations": { |
| 13 | + "vscode": { |
| 14 | + "settings": { |
| 15 | + "terminal.integrated.defaultProfile.linux": "zsh", |
| 16 | + "python.pythonPath": "/usr/local/bin/python" |
| 17 | + }, |
| 18 | + "extensions": [ |
| 19 | + "ms-python.python" |
| 20 | + ] |
| 21 | + } |
| 22 | + }, |
| 23 | + "features": { |
| 24 | + "ghcr.io/devcontainers-contrib/features/starship-homebrew:1": {}, |
| 25 | + "ghcr.io/devcontainers/features/docker-outside-of-docker:1": {}, |
| 26 | + "ghcr.io/devcontainers/features/github-cli:1": { |
| 27 | + }, |
| 28 | + }, |
| 29 | + "mounts": [ |
| 30 | + "source=${localEnv:HOME}${localEnv:USERPROFILE}/.ssh,target=/home/vscode/.ssh,type=bind,consistency=cached", |
| 31 | + "source=${localEnv:HOME}${localEnv:USERPROFILE}/.zsh_history,target=/home/vscode/.zsh_history,type=bind,consistency=cached", |
| 32 | + "source=${localEnv:HOME}${localEnv:USERPROFILE}/.zshrc,target=/home/vscode/.zshrc,type=bind,consistency=cached", |
| 33 | + "source=${localEnv:HOME}${localEnv:USERPROFILE}/.zshenv,target=/home/vscode/.zshenv,type=bind,consistency=cached", |
| 34 | + "source=${localEnv:HOME}${localEnv:USERPROFILE}/.config/starship.toml,target=/home/vscode/.config/starship.toml,type=bind,consistency=cached", |
| 35 | + "source=${localEnv:HOME}${localEnv:USERPROFILE}/.config/gh,target=/home/vscode/.config/gh,type=bind,consistency=cached", |
| 36 | + "source=${localEnv:HOME}${localEnv:USERPROFILE}/.gitconfig,target=/home/vscode/.gitconfig,type=bind,consistency=cached", |
| 37 | + ], |
| 38 | + "remoteUser": "vscode" |
| 39 | +} |
0 commit comments