Minecraft Server Docker Image

Dockerfile Create a Dockerfile for the minecraft server image with the following: FROM ubuntu:xenial MAINTAINER Richard Meyer ENV MINECRAFT_VERSION 1.11.2 ENV DEBIAN_FRONTEND noninteractive RUN apt-get -y update && apt-get -y upgrade && apt-get install --no-install-recommends -y -q \ software-properties-common \ && apt-add-repository -y ppa:webupd8team/java \ && apt-get -y update \ && echo…

How to get ASP.NET MVC3 Working under Mono 2.10 (Ubuntu 12.10)

I've managed to get Mono [http://www.mono-project.com/] (version 2.10.8.1) working with MVC3 in my Apache server through mod-mono and mono-server4. Update: Included a DirectoryMatch configuration for securing various ASP.net directories. Visual Studio Project Settings Required References (Copy Local: True): * System.Web.Mvc * System.Web.…

Minecraft Linux Servers - Automated Commands using Screen & Cron

The following is for Minecraft Server administrators running Linux. If you run your Minecraft server through a named screen session, you can develop simple bash scripts that automate commands. This can be everything from giftbag scripts to automated backups. An example backup script: /home/user/minecraft/backup.sh #!/bin/sh…