Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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