Skip to content

The Minecraft SpongeVanilla server in a Docker container

License

Notifications You must be signed in to change notification settings

terencewestphal/docker-minecraft-spongevanilla

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Docker Build Statu Docker Stars Docker Pulls

SpongeVanilla

Docker - Minecraft SpongeVanilla

  • Minimalistic and simple to configure.
  • Works out-of-the-box. Defaults are provided if no volume is mounted.
  • Based on the Docker Minecraft image.

Supported tags and Dockerfile

Pull

Get the latest version:

docker pull terencewestphal/minecraft-spongevanilla:latest

Build

Build the latest Minecraft version and tag the image:

docker build -t minecraft-spongevanilla .

Optional: Build with a specific Minecraft version:

docker build --build-arg VERSION=1.12.2-7.0.0-BETA-369 -t minecraft-spongevanilla .

Run

Run with default settings:

docker run -d -p 25565:25565 --name spongevanilla terencewestphal/minecraft-spongevanilla

Run with volume mounted:

docker run -d -p 25565:25565 -v $PWD:/srv/minecraft --name spongevanilla terencewestphal/minecraft-spongevanilla

Interactive Mode

Attach an interactive console in order to use the SpongeVanilla server commands:

docker attach spongevanilla