sandbox: decode stdout and stderr separately, add tests Change-Id: Ia308dd77f29025276c0644e9e2b647f0658f2f74 Reviewed-on: https://go-review.googlesource.com/2702 Reviewed-by: Minux Ma <minux@golang.org>
This subrepository holds the source for various packages and tools that support the Go playground: https://play.golang.org/
# build the sandbox image docker build -t sandbox sandbox/
# run the sandbox docker run -d -p 8080:8080 sandbox # get docker host ip, try boot2docker fallback on localhost. DOCKER_HOST_IP=$(boot2docker ip || echo localhost) # run go some code cat /path/to/code.go | go run ./sandbox/client.go | curl --data @- $DOCKER_HOST_IP:8080/compile
To submit changes to this repository, see http://golang.org/doc/contribute.html.