# docs
Wiki, templates, boilerplates, etc

# aws_local
- Docker-compose with local AWS environment. Combination of [LocalStack](https://github.com/localstack/localstack) and [MinIO](https://min.io/). MinIO is S3 Compatible Object Storage which is capable of handling large files which S3 from LocalStack is not.
- Works with AWS CLI and Boto3. 
 
   Example: 
   - docker-compose up
   - zip -j handler.zip lambda_example/handler.py
   - aws --endpoint-url=http://localhost:4574  lambda create-function --function-name create_and_copy_s3 --zip-file  fileb://handler.zip  --runtime python3.7 --role user --handler handler.lambda_handler
   - aws --endpoint-url=http://localhost:4574  lambda invoke --function-name create_and_copy_s3 example.log

   
    
