generated from devcontainers/feature-starter
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdevcontainer-feature.json
More file actions
23 lines (23 loc) · 830 Bytes
/
devcontainer-feature.json
File metadata and controls
23 lines (23 loc) · 830 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "Mount pnpm Store",
"id": "mount-pnpm-store",
"version": "1.0.2",
"documentationURL": "https://github.com/joshuanianji/devcontainer-features/tree/main/src/mount-pnpm-store",
"description": "Sets pnpm store to ~/.pnpm-store and mounts it to a volume to share between multiple devcontainers",
"options": {},
"mounts": [
{
"source": "global-devcontainer-pnpm-store",
"target": "/dc/mounted-pnpm-store",
"type": "volume"
}
],
"installsAfter": [
"ghcr.io/devcontainers/features/node",
"ghcr.io/devcontainers/features/common-utils",
"ghcr.io/meaningful-ooo/devcontainer-features/fish"
],
"onCreateCommand": {
"mount-pnpm-store-setup": "/usr/local/share/mount-pnpm-store/scripts/oncreate.sh"
}
}