Explorar el Código

Merge pull request #2693 from fkautz/makefile

Adding a makefile
Solomon Hykes hace 11 años
padre
commit
c4548506c5
Se han modificado 1 ficheros con 18 adiciones y 0 borrados
  1. 18 0
      Makefile

+ 18 - 0
Makefile

@@ -0,0 +1,18 @@
+default: build
+
+build: bundles
+	docker build -t docker .
+	docker run -privileged -v `pwd`/bundles:/go/src/github.com/dotcloud/docker/bundles docker hack/make.sh binary
+
+doc:
+	cd docs && docker build -t docker-docs . && docker run -p 8000:8000 docker-docs
+
+test: bundles
+	docker run -privileged -v `pwd`/bundles:/go/src/github.com/dotcloud/docker/bundles docker hack/make.sh test
+
+shell:
+	docker run -privileged -i -t docker bash
+
+bundles:
+	mkdir bundles
+