aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2016-03-25 20:04:45 +0100
committerDimitri Sokolyuk <demon@dim13.org>2016-03-25 20:04:45 +0100
commit57c53df2246eb79d77245e8f2cc9efe03f997c14 (patch)
treef1e1bd2bdcf966324b20e2cb7c66c235f6059e2e /Makefile
parent80dbf3cbd4a37979f21116f4f03250c025ea41f1 (diff)
Add (working) stub for WebSocket Proxy
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}