We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4545c32 commit 3da027bCopy full SHA for 3da027b
1 file changed
Makefile
@@ -31,4 +31,13 @@ update-deps:
31
32
build-run: build run
33
34
+docker-build:
35
+ docker build -t java-spring-boot-hello-world .
36
+
37
+docker-run:
38
+ docker run -p 3000:8080 --name spring-hello-world java-spring-boot-hello-world
39
40
+docker-bash:
41
+ docker run --rm -it -p 3000:8080 java-spring-boot-hello-world bash
42
43
.PHONY: build
0 commit comments