diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..25deeeb --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +DOCKER_REVISION ?= testing-$(USER) + +.PHONY: build-image +build-image: + docker build -t glpi:${DOCKER_REVISION} . + +.PHONY: run-image +run-image: + docker run -it --rm -p 8080:80 glpi:${DOCKER_REVISION} + +.PHONY: start-dev +start-dev: build-image run-image \ No newline at end of file