• This repository has been archived on 25/Jun/2018
  • Stars
    star
    192
  • Rank 200,842 (Top 4 %)
  • Language
    Shell
  • License
    Other
  • Created almost 11 years ago
  • Updated over 6 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

An easy way to get a Minecraft server up and running using docker.

docker-minecraft

A nice and easy way to get a Minecraft server up and running using docker. For help on getting started with docker see the official getting started guide. For more information on Minecraft and check out it's website.

Building docker-minecraft

Running this will build you a docker image with the latest version of both docker-minecraft and Minecraft itself.

git clone https://github.com/overshard/docker-minecraft
cd docker-minecraft
sudo docker build -t overshard/minecraft .

Running docker-minecraft

Running the first time will set your port to a static port of your choice so that you can easily map a proxy to. If this is the only thing running on your system you can map the port to 25565 and no proxy is needed. i.e. -p=25565:25565 . If you want to enable the query protocol you need to add another -p=25565:25565/udp to forward the UDP protocol on the same port as well. Also be sure your mounted directory on your host machine is already created before running mkdir -p /mnt/minecraft.

sudo docker run -d=true -p=25565:25565 -v=/mnt/minecraft:/data overshard/minecraft /start

From now on when you start/stop docker-minecraft you should use the container id with the following commands. To get your container id, after you initial run type sudo docker ps and it will show up on the left side followed by the image name which is overshard/minecraft:latest.

sudo docker start <container_id>
sudo docker stop <container_id>

Notes on the run command

  • -v is the volume you are mounting -v=host_dir:docker_dir
  • overshard/minecraft is simply what I called my docker build of this image
  • -d=true allows this to run cleanly as a daemon, remove for debugging
  • -p is the port it connects to, -p=host_port:docker_port

More Repositories

1

timestrap

Time tracking you can host anywhere. Full export support in multiple formats and easily extensible.
Python
1,686
star
2

pinry

Pinry's repository has moved to
Python
607
star
3

timelite

Why is it 5 AM? Isn't there something simple I can use to track what I'm doing with all this time?
JavaScript
263
star
4

docker-teamspeak

A nice and easy way to get a TeamSpeak server up and running using docker.
Shell
106
star
5

ai-art

Art generation using VQGAN + CLIP using docker containers. A simplified, updated, and expanded upon version of Kevin Costa's work. This project tries to make generating art as easy as possible for anyone with a GPU by providing a simple web UI.
Python
16
star
6

isaacbythewood.com

The personal website of Isaac Bythewood.
JavaScript
10
star
7

newtab

A clean new tab page extension for Chrome made by Isaac Bythewood, you can grab it and customize it yourself.
JavaScript
3
star
8

dotfiles

A variety of config files for setting up new systems.
Shell
2
star
9

status

A self-hosted status monitoring service.
Python
2
star
10

every-robot-planet

An incremental game by Isaac Bythewood, Dylan Lee, and various other contributors.
JavaScript
2
star
11

everyrobotplanet.com

An incremental game by Isaac Bythewood, Dylan Lee, and various other contributors.
JavaScript
2
star
12

blog

A self-hostable blog built on Wagtail targeted towards developers with code blocks, syntax highlighting, live search, great SEO, and a clean customizable UI.
Python
2
star
13

dockerfiles

All the Dockerfiles I use for various purposes. More detailed usage instructions are at the top of each Dockerfile.
Dockerfile
2
star
14

alpinefiles

Some of the files that I use on my Alpine Linux servers.
Shell
1
star
15

analytics

A self-hostable analytics service with a straightforward API to collect events from any source.
Python
1
star