-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add containerEnv, mounts and onCreateCommand
- Loading branch information
Richard Cunningham
committed
Nov 21, 2024
1 parent
862eb0e
commit 722fbe5
Showing
1 changed file
with
14 additions
and
2 deletions.
There are no files selected for viewing
16 changes: 14 additions & 2 deletions
16
.devcontainer/features/sterminalhistory/devcontainer-feature.json
This file contains 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
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", | ||
} |