minecraft-spigot/README.md

25 lines
497 B
Markdown
Raw Normal View History

## spigot server
spigot server
2017-03-10 01:01:10 +01:00
2017-03-10 01:05:46 +01:00
### Building spigot-server container
2017-03-10 01:01:10 +01:00
```
docker build -t zombi/spigot-server .
```
2017-03-10 01:05:46 +01:00
the spigot binaries are built on the first start of the container instance.
This might take a few minutes depending on the internet connection and computing power of the host system.
### Running spigot-server
2017-03-10 01:01:10 +01:00
```
docker run -it -d \
-v /data/minecraft/mc-server:/usr/games/mcserv \
--name spigot-server \
-p 25565:25565/udp \
-p 25565:25565/tcp \
2017-03-10 01:01:10 +01:00
zombi/spigot-server
```