diff --git a/minecraft/docker-compose.yml b/minecraft/docker-compose.yml new file mode 100644 index 0000000..d33c047 --- /dev/null +++ b/minecraft/docker-compose.yml @@ -0,0 +1,13 @@ +services: + minecraft: + image: itzg/minecraft-server:latest + pull_policy: daily + tty: true + stdin_open: true + ports: + - "25565:25565" + environment: + EULA: "TRUE" + volumes: + # attach the relative directory 'data' to the container's /data path + - /mnt/nvme/minecraft/data:/data \ No newline at end of file