Merge pull request #1097 from aanand/script-shell

Add script/shell
This commit is contained in:
Ben Firshman 2015-03-13 14:43:47 +00:00
commit 081afd9bbf
1 changed files with 4 additions and 0 deletions

4
script/shell Executable file
View File

@ -0,0 +1,4 @@
#!/bin/sh
set -ex
docker build -t docker-compose .
exec docker run -v /var/run/docker.sock:/var/run/docker.sock -v `pwd`:/code -ti --rm --entrypoint bash docker-compose