serverless-docker
serverless-docker copied to clipboard
Build serverless apps with Docker
The routing used in entrypoint/main.go generally looks like: `http.Handle("/vote/", &dcgi.Handler{ Image: "noteoj/serverless-vote", Client: cli, HostConfig: hostConfig, Root: "/vote", // strip /vote from all URLs }) ` When run under Docker...
Do you have the source for https://hub.docker.com/r/bfirsh/leftpad/ available?
Hey, I use Docker extensively for architecting my applications. I've been researching serverless design quite a bit lately, particularly looking for anything focused on doing it with Docker. I like...
Example using go-dexec i'll probably demo... ``` package main import ( "net/http" "github.com/fsouza/go-dockerclient" "log" "github.com/ahmetalpbalkan/dexec" "io" "fmt" ) func hello(w http.ResponseWriter, r *http.Request) { cl, _ := docker.NewClient("unix:///var/run/docker.sock") d :=...