Initial commit: Better Ender Chests mod for NeoForge 1.21.1

This commit is contained in:
root
2026-03-09 22:22:31 +08:00
commit 10707f047b
61 changed files with 1286 additions and 0 deletions

23
docker-compose.yml Normal file
View File

@@ -0,0 +1,23 @@
version: '3.8'
services:
build:
build:
context: .
dockerfile: Dockerfile
volumes:
- ./build:/app/build
command: sh -c "cp /output/*.jar /app/build/ 2>/dev/null || echo 'Build complete'"
dev:
build:
context: .
dockerfile: Dockerfile
volumes:
- .:/app
- gradle-cache:/root/.gradle
working_dir: /app
command: ./gradle/bin/gradle runClient --no-daemon
volumes:
gradle-cache: