https://github.com/luzifer-docker/awscli
Simple build for the awscli util as a replacement for a local installation of the utility
https://github.com/luzifer-docker/awscli
aws-cli awscli docker
Last synced: 3 months ago
JSON representation
Simple build for the awscli util as a replacement for a local installation of the utility
- Host: GitHub
- URL: https://github.com/luzifer-docker/awscli
- Owner: luzifer-docker
- License: apache-2.0
- Created: 2016-06-24T20:44:56.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2025-12-20T20:04:32.000Z (3 months ago)
- Last Synced: 2025-12-22T20:11:00.068Z (3 months ago)
- Topics: aws-cli, awscli, docker
- Language: Shell
- Homepage:
- Size: 445 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Luzifer / awscli
This repository contains a simple build for the [`awscli` util](https://aws.amazon.com/cli/) as a replacement for a local installation of the utility.
## Usage
```bash
$ docker run --rm -ti \
-v "${HOME}/.aws:/root/.aws" \
-e "AWS_SECRET_ACCESS_KEY=${AWS_SECRET_ACCESS_KEY}" \
-e "AWS_ACCESS_KEY_ID=${AWS_ACCESS_KEY_ID}" \
-e "AWS_DEFAULT_REGION=${AWS_DEFAULT_REGION}" \
quay.io/luzifer/awscli help
```
Or you could create a shell alias for that command and use it like a local installation of awscli:
```bash
$ alias aws='docker run --rm -ti -v "${HOME}/.aws:/root/.aws" -e "AWS_SECRET_ACCESS_KEY=${AWS_SECRET_ACCESS_KEY}" -e "AWS_ACCESS_KEY_ID=${AWS_ACCESS_KEY_ID}" -e "AWS_DEFAULT_REGION=${AWS_DEFAULT_REGION}" quay.io/luzifer/awscli'
$ aws help
```