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

https://github.com/artioml/aws-cli

:rocket: Essential Amazon Web Services container with CLI, interactive shell, Python SDK and extensible scripts
https://github.com/artioml/aws-cli

aws aws-cli boto3 cloud cloud-management docker

Last synced: 2 months ago
JSON representation

:rocket: Essential Amazon Web Services container with CLI, interactive shell, Python SDK and extensible scripts

Awesome Lists containing this project

README

          

#    aws-cli
[![Build Status](https://img.shields.io/travis/com/ArtiomL/aws-cli/develop.svg)](https://travis-ci.com/ArtiomL/aws-cli)
[![Releases](https://img.shields.io/github/release/ArtiomL/aws-cli.svg)](https://github.com/ArtiomL/aws-cli/releases)
[![Commits](https://img.shields.io/github/commits-since/ArtiomL/aws-cli/latest.svg?label=commits%20since)](https://github.com/ArtiomL/aws-cli/commits/master)
[![Maintenance](https://img.shields.io/maintenance/yes/2022.svg)](https://github.com/ArtiomL/aws-cli/graphs/code-frequency)
[![Issues](https://img.shields.io/github/issues/ArtiomL/aws-cli.svg)](https://github.com/ArtiomL/aws-cli/issues)
[![Docker Hub](https://img.shields.io/docker/pulls/artioml/aws-cli.svg)](https://hub.docker.com/r/artioml/aws-cli/)
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](/LICENSE)

  

## Table of Contents
- [Description](#description)
- [Installation](#installation)
- [Run](#run)
- [Credentials](#credentials)
- [Extensibility](#extensibility)
- [Modules](#modules)
- [License](LICENSE)

  

## Description

Essential Amazon Web Services container with CLI, interactive shell, Python SDK and extensible scripts.

  

## Installation

### Run
```shell
# aws-cli/2.7.6
docker run -it artioml/aws-cli

```

### Credentials
The home directory used when running the image (`/home/user/`) has the following [structure](.creds).
Either edit the `credentials` file for your environment, or mount a local directory with the same path structure:

```
docker run -it -v ~/:/home/user/ artioml/aws-cli
```

  

## Extensibility
The container will dynamically pull down (and `cd` to) whatever GitHub repository is specified in the `REPO` environment variable. This enables Continuous Delivery of new content every time the container is started and that repository is updated. It also allows you to load and run your own custom environments.

```shell
-e "REPO=/"
```
For [example](https://github.com/ArtiomL/aws-labs):
```shell
docker run -it -e "REPO=artioml/aws-labs" artioml/aws-cli
```