summaryrefslogtreecommitdiff
path: root/justfile
diff options
context:
space:
mode:
Diffstat (limited to 'justfile')
-rw-r--r--justfile7
1 files changed, 7 insertions, 0 deletions
diff --git a/justfile b/justfile
new file mode 100644
index 0000000..6bd8d71
--- /dev/null
+++ b/justfile
@@ -0,0 +1,7 @@
+
+build-image:
+ docker build . -t musicgame --platform linux/aarch64
+
+push-image:
+ docker save musicgame | bzip2 | ssh mhtwtf docker load
+ ssh mhtwtf "docker run --entrypoint '/app/server' -p 4001:4800 -dt musicgame"