I hereby claim:
- I am anderkonzen on github.
- I am anderkonzen (https://keybase.io/anderkonzen) on keybase.
- I have a public key whose fingerprint is 0769 84BB 8E29 F89D 0A80 CF00 05E8 BB9A CB0B 47D0
To claim this, I am signing this object:
| defmodule SimpleS3Upload do | |
| @moduledoc """ | |
| Dependency-free S3 Form Upload using HTTP POST sigv4 | |
| https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-post-example.html | |
| """ | |
| @doc """ | |
| Signs a form upload. | |
| The configuration is a map which must contain the following keys: | |
| * `:region` - The AWS region, such as "us-east-1" |
| FROM ruby:2.3.8-stretch | |
| # To build this image, use: | |
| # docker build -f Dockerfile-dev -t rails-dev . | |
| # | |
| # To run a console with the current directory mounted | |
| # in the container, use: | |
| # docker run -it --rm -v `pwd`:/app rails-dev bundle exec rails c | |
| # | |
| # To run a shell: |
| --- | |
| version: '2' | |
| services: | |
| zk1: | |
| image: confluentinc/cp-zookeeper:3.0.1 | |
| ports: | |
| - "22181:22181" | |
| environment: | |
| ZOOKEEPER_SERVER_ID: 1 | |
| ZOOKEEPER_CLIENT_PORT: 22181 |
I hereby claim:
To claim this, I am signing this object:
For ruby, minitest information can be found here:
| # Stop / remove all containers | |
| docker stop $(docker ps -a -q) | |
| docker rm $(docker ps -a -q) | |
| # Delete all images | |
| docker rmi $(docker images -q) | |
| # Start a bash on a running container | |
| docker exec -t -i <container_name> bash |