mirror of
https://github.com/mii443/minecraft-scala-plugin-template.git
synced 2025-08-22 16:05:37 +00:00
Initial commit: Minecraft Scala Plugin Template
- Complete Scala SpigotMC plugin template
- Docker development environment
- Sample commands (/hello, /info) and event handlers
- Development scripts for easy server management
- Comprehensive README and documentation
🤖 Generated with Claude Code
This commit is contained in:
23
docker-compose.yml
Normal file
23
docker-compose.yml
Normal file
@ -0,0 +1,23 @@
|
||||
version: '3.8'
|
||||
|
||||
services:
|
||||
minecraft-server:
|
||||
build: .
|
||||
container_name: minecraft-dev-server
|
||||
ports:
|
||||
- "25565:25565"
|
||||
volumes:
|
||||
- ./target/scala-2.13/minecraft-scala-plugin_2.13-1.0.0.jar:/minecraft/plugins/minecraft-scala-plugin.jar
|
||||
- ./server-data:/minecraft/world
|
||||
- ./server-logs:/minecraft/logs
|
||||
environment:
|
||||
- JAVA_OPTS=-Xmx2G -Xms1G
|
||||
stdin_open: true
|
||||
tty: true
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- minecraft-net
|
||||
|
||||
networks:
|
||||
minecraft-net:
|
||||
driver: bridge
|
Reference in New Issue
Block a user