playground: remove ref to nacl image in README

Change-Id: If35f492f6b65e16ffdd5284b7bd53ec2a033a2bd
1 file changed
tree: a1e59b46af0107c9ed775f8e28b791073a6a2986
  1. sandbox/
  2. AUTHORS
  3. CONTRIBUTORS
  4. LICENSE
  5. PATENTS
  6. README.md
README.md

playground

This subrepository holds the source for various packages and tools that support the Go playground: https://play.golang.org/

building

# build the sandbox image
docker build -t sandbox sandbox/

running

# 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.