diff --git a/.packwizignore b/.packwizignore
index f3d36f1..ba91115 100644
--- a/.packwizignore
+++ b/.packwizignore
@@ -1 +1 @@
-kubejs/probe
+compose.yaml
diff --git a/compose.yaml b/compose.yaml
new file mode 100644
index 0000000..491a7da
--- /dev/null
+++ b/compose.yaml
@@ -0,0 +1,14 @@
+services:
+  server:
+    image: "itzg/minecraft-server"
+    volumes:
+      - server-data:/data
+    environment:
+      TYPE: "FORGE"
+      PACKWIZ_URL: "http://172.17.0.1:8080/pack.toml"
+      EULA: "TRUE"
+      VERSION: "1.20.1"
+      MEMORY: "8G"
+    network_mode: "host"
+volumes:
+  server-data:
\ No newline at end of file