https://github.com/infrablocks/docker-base-alpine-aws-s3-config
Alpine base image for all InfraBlocks images being used on AWS with S3 based configuration.
https://github.com/infrablocks/docker-base-alpine-aws-s3-config
alpine aws aws-s3 docker docker-image image infrablocks
Last synced: 12 months ago
JSON representation
Alpine base image for all InfraBlocks images being used on AWS with S3 based configuration.
- Host: GitHub
- URL: https://github.com/infrablocks/docker-base-alpine-aws-s3-config
- Owner: infrablocks
- License: mit
- Created: 2018-10-17T11:38:52.000Z (over 7 years ago)
- Default Branch: main
- Last Pushed: 2025-05-05T21:17:12.000Z (about 1 year ago)
- Last Synced: 2025-05-07T20:45:04.143Z (about 1 year ago)
- Topics: alpine, aws, aws-s3, docker, docker-image, image, infrablocks
- Language: Shell
- Size: 361 KB
- Stars: 2
- Watchers: 11
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Docker Base Image - Alpine AWS S3 Config
## 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 ""
```