Skip to content

Commit

Permalink
add containerEnv, mounts and onCreateCommand
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard Cunningham committed Nov 21, 2024
1 parent 862eb0e commit 722fbe5
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .devcontainer/features/sterminalhistory/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
{
"name": "BASH terminal auto history configuration",
"id": "colortwo",
"version": "1.0.6",
"description": "Make default BASH terminal nicer"
"version": "1.0.7",
"description": "Make default BASH terminal nicer",
"containerEnv": {
"CONFIG_FOLDER": "/devcontainer_rc",
"CONFIG_STAGING": "/devcontainer_staging"
},
"mounts": [
{
"source": "${localEnv:HOME}/.config/devcontainer_rc",
"target": "/devcontainer_rc",
"type": "bind"
}
],
"onCreateCommand": "bash /devcontainer_staging/onCreateCommand.sh",
}

0 comments on commit 722fbe5

Please sign in to comment.