Created
March 7, 2025 06:15
-
-
Save ascarter/843beab50395e277e8d5ec555692aee6 to your computer and use it in GitHub Desktop.
Zed devcontainer tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Static tasks configuration. | |
[ | |
{ | |
"label": "Build", | |
"command": "devcontainer build" | |
}, | |
{ | |
"label": "Start", | |
"command": "devcontainer up" | |
}, | |
{ | |
"label": "Stop", | |
"command": "docker", | |
"args": [ | |
"compose", | |
"--project-name", | |
"ascartergithubio_devcontainer", | |
"-f", | |
"${ZED_WORKTREE_ROOT}/.devcontainer/compose.yml", | |
"down" | |
] | |
}, | |
{ | |
"label": "Shell", | |
"command": "devcontainer exec bash" | |
}, | |
{ | |
"label": "Clean", | |
"command": "docker", | |
"args": [ | |
"volume", | |
"rm", | |
"ascartergithubio_devcontainer_ts-ascarter-github-io-data" | |
] | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment