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) · 831 Bytes
/
devcontainer-feature.json
File metadata and controls
23 lines (23 loc) · 831 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": "AWS CLI Persistence",
"id": "aws-cli-persistence",
"version": "1.0.3",
"documentationURL": "https://github.com/joshuanianji/devcontainer-features/tree/main/src/aws-cli-persistence",
"description": "Avoid extra logins from the AWS CLI by preserving the `~/.aws` folder across container instances.",
"options": {},
"mounts": [
{
"source": "${devcontainerId}-aws-cli",
"target": "/dc/aws-cli",
"type": "volume"
}
],
"installsAfter": [
"ghcr.io/devcontainers/features/aws-cli",
"ghcr.io/devcontainers/features/common-utils",
"ghcr.io/meaningful-ooo/devcontainer-features/fish"
],
"onCreateCommand": {
"aws-cli-persistence-setup": "/usr/local/share/aws-cli-persistence/scripts/oncreate.sh"
}
}