Setup a Minecraft Server on Docker
This post will show how to setup your own minecraft game server on docker using docker-compose. Requirements As we will run minecraft as a docker container, we require docker and docker-compose. You can follow the links to their website for instructions to install it. In summary it will be the following to install docker: curl https://get.docker.com | bash sudo usermod -aG docker $USER And the following to install docker-compose: sudo curl -L "https://github....