-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
17f0368
commit b95c6cf
Showing
3 changed files
with
51 additions
and
0 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
|
||
# alpine-aws-cli (alpine-aws-cli) | ||
|
||
Installs aws-cli on alpine | ||
|
||
## Example Usage | ||
|
||
```json | ||
"features": { | ||
"ghcr.io/cirolosapio/devcontainers-features/alpine-aws-cli:0": {} | ||
} | ||
``` | ||
|
||
## Options | ||
|
||
| Options Id | Description | Type | Default Value | | ||
|-----|-----|-----|-----| | ||
| initZsh | Init zsh | boolean | true | | ||
|
||
|
||
|
||
--- | ||
|
||
_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/cirolosapio/devcontainers-features/blob/main/src/alpine-aws-cli/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"name": "alpine-aws-cli", | ||
"id": "alpine-aws-cli", | ||
"version": "0.0.1", | ||
"description": "Installs aws-cli on alpine", | ||
"documentationURL": "https://github.com/cirolosapio/devcontainers-features/tree/main/src/alpine-aws-cli", | ||
"options": { | ||
"initZsh": { | ||
"type": "boolean", | ||
"default": true, | ||
"description": "Init zsh" | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/sh | ||
|
||
set -e | ||
|
||
echo "Activating feature 'alpine-aws-cli'" | ||
|
||
apk --no-cache add aws-cli | ||
|
||
if [[ $INITZSH == "true" ]]; then | ||
apk --no-cache add aws-cli-zsh-completion | ||
fi | ||
|
||
echo 'Done!' |