From ec43e68bb407a39914101c00fc16efd3b8502432 Mon Sep 17 00:00:00 2001 From: Victoria Fischer Date: Sat, 1 Mar 2025 14:55:02 +0100 Subject: [PATCH] add docker-compose file for testing --- .packwizignore | 2 +- compose.yaml | 14 ++++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 compose.yaml 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