https://github.com/neutron-pro/docker-spigot
Docker Image for Minecraft server 1.8
https://github.com/neutron-pro/docker-spigot
docker docker-compose image-docker minecraft spigot spigotmc
Last synced: about 1 month ago
JSON representation
Docker Image for Minecraft server 1.8
- Host: GitHub
- URL: https://github.com/neutron-pro/docker-spigot
- Owner: Neutron-Pro
- Created: 2021-05-23T16:04:46.000Z (about 5 years ago)
- Default Branch: develop
- Last Pushed: 2021-07-22T19:34:03.000Z (almost 5 years ago)
- Last Synced: 2025-05-15T07:42:14.755Z (about 1 year ago)
- Topics: docker, docker-compose, image-docker, minecraft, spigot, spigotmc
- Language: Dockerfile
- Homepage:
- Size: 7.81 KB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
Awesome Lists containing this project
README
# Docker Image for Minecraft server
## Installation
- Change settings in the ./docker/spigot/minecraft/server.properties file (DON'T TOUCH server-port) and yml configuration
- Place your world in ./docker/spigot/minecraft folder (no require)
- Change the version in the docker-compose.yml file. (no require)
```bash
docker-compose up -d --build
```
```diff
- Please note that the installation takes time because it uses the BuildTools of Spigot. For the version, please indicate a valid version. For more information: https://www.spigotmc.org/wiki/buildtools/
```
## Start
```bash
docker-compose up -d
```
## Perform a minecraft command
```bash
docker exec -it spigot ./mc
```
## Stop
```bash
docker exec -it spigot ./mc stop
docker-compose down
```
## Build multiple container
From the docker-compose
- Remove volumes key and value.
- Remove the container_name key.
- Modify ports values:
```yml
ports:
- 25565-25565
```
Perform the docker-compose command
```bash
docker-compose up --scale spigot=[Container count] -d
```