Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/infrablocks/docker-base-alpine-aws

Alpine base image for all InfraBlocks images being used on AWS. Includes AWS CLI.
https://github.com/infrablocks/docker-base-alpine-aws

alpine aws docker docker-image image infrablocks

Last synced: about 2 months ago
JSON representation

Alpine base image for all InfraBlocks images being used on AWS. Includes AWS CLI.

Awesome Lists containing this project

README

        

# Docker Base Image - Alpine AWS

## Development

### Managing CircleCI keys

To encrypt a GPG key for use by CircleCI:

```bash
openssl aes-256-cbc \
-e \
-md sha1 \
-in ./config/secrets/ci/gpg.private \
-out ./.circleci/gpg.private.enc \
-k ""
```

To check decryption is working correctly:

```bash
openssl aes-256-cbc \
-d \
-md sha1 \
-in ./.circleci/gpg.private.enc \
-k ""
```