Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/progrhyme/aws-cli-docker
Dockerize AWS CLI
https://github.com/progrhyme/aws-cli-docker
Last synced: 18 days ago
JSON representation
Dockerize AWS CLI
- Host: GitHub
- URL: https://github.com/progrhyme/aws-cli-docker
- Owner: progrhyme
- License: mit
- Created: 2017-11-26T14:59:20.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-12-03T04:02:08.000Z (about 7 years ago)
- Last Synced: 2024-11-05T22:42:05.481Z (2 months ago)
- Language: Shell
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# aws-cli-docker
Dockerfile for container to run Amazon [AWS CLI](https://aws.amazon.com/cli/).
Images are available on https://hub.docker.com/r/progrhyme/aws-cli/ .
# Usage
```sh
docker run -it progrhyme/aws-cli
```This runs `aws` command through the container.
To specify your credentials to `aws` command, pass as environment variables:
```sh
docker run -it \
-e AWS_ACCESS_KEY_ID="" \
-e AWS_SECRET_ACCESS_KEY="" \
-e AWS_DEFAULT_REGION="" \
progrhyme/aws-cli
```# Dependencies
- https://hub.docker.com/_/python/
# Alternatives
- https://hub.docker.com/r/mesosphere/aws-cli/
# License
The MIT License (MIT)
Copyright (c) 2017 IKEDA Kiyoshi