amalgame/commit

added: initial docker compose file - untested

authorJacco van Ossenbruggen
Thu Dec 9 10:40:39 2021 +0100
committerJacco van Ossenbruggen
Thu Dec 9 10:40:39 2021 +0100
commit3b535c57f99ab611149df113d096f94b0de3b1ac
treedecff650d2051164b5efa7f5a2eb3383b2b720b0
parentea1f11a5940d69e7ce3befda61d4bead6701b4b6
Diff style: patch stat
diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml
new file mode 100644
index 0000000..4f0c16e
--- /dev/null
+++ b/docker/docker-compose.yml
@@ -0,0 +1,13 @@
+# Assuming you want to read/write from the container in the 
+# $PWD of the host fs, so start with:
+#   shell> UID=$(id -u) GID=$(id -g) docker-compose up
+
+services:
+  amalgame:
+      image: jrvosse/amalgame
+      user: "${UID}:${GID}"
+      volumes:
+        - "./:/opt/project"
+      ports:
+        - "3020:3020"
+