add docker-compose file for testing

This commit is contained in:
Victoria Fischer 2025-03-01 14:55:02 +01:00
parent 142c3dd2da
commit ec43e68bb4
2 changed files with 15 additions and 1 deletions

View File

@ -1 +1 @@
kubejs/probe
compose.yaml

14
compose.yaml Normal file
View File

@ -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: