Merge pull request #31 from homburg/feature-add-makefile

Add Makefile
pull/2/head
Michael Crosby 11 years ago
commit 5075995129

@ -0,0 +1,17 @@
.PHONY: build run
.SUFFIXES:
OPEN = $(shell which xdg-open || which open)
PORT ?= 9000
build:
docker build --rm -t dockerui .
run:
docker run -d -p $(PORT):9000 -v /var/run/docker.sock:/docker.sock dockerui -e /docker.sock
open:
$(OPEN) localhost:$(PORT)
Loading…
Cancel
Save