Skip to content

Instantly share code, notes, and snippets.

@ascarter
Created March 7, 2025 06:15
Show Gist options
  • Save ascarter/843beab50395e277e8d5ec555692aee6 to your computer and use it in GitHub Desktop.
Save ascarter/843beab50395e277e8d5ec555692aee6 to your computer and use it in GitHub Desktop.
Zed devcontainer tasks
// 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