Skip to content

Instantly share code, notes, and snippets.

View ThomasRedstone's full-sized avatar

Thomas Redstone ThomasRedstone

View GitHub Profile
package main
import (
"bytes"
"context"
"encoding/json"
"fmt"
"os"
"github.com/aws/aws-lambda-go/events"

Keybase proof

I hereby claim:

  • I am thomasredstone on github.
  • I am thomasredstone (https://keybase.io/thomasredstone) on keybase.
  • I have a public key ASBPZ9G-5Yq9KwkaULqO7GThQo97MQRu570cN0Wa_3XdUgo

To claim this, I am signing this object:

@ThomasRedstone
ThomasRedstone / docker-compose.yml
Created January 12, 2017 11:01
Docker-compose file for a basic PHP site.
app:
image: thomasredstone/php7fpm:1.0.7
links:
- redis:redis
- mysql:mysql
ports:
- 9000:9000
volumes:
- ./:/var/www/app/
mysql: