aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 2b63d94..e399de4 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@ TAG=registry.moccu/${APP}
build:
docker build --tag ${TAG} --rm --no-cache .
-push:
+push: build
docker push ${TAG}
volume:
@@ -24,3 +24,6 @@ start:
--name ${APP} --net ${APP} --restart unless-stopped ${TAG}
restart: stop start
+
+logs:
+ docker logs -f ${APP}