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....

October 26, 2021 路 5 min 路 Ruan Bekker

Setup 7 Days Game Server on Docker

This post will show how to setup your own 7 days to die game server on docker using docker compose. About The game 7 days to die is set in a post-apocalyptic world overrun by zombies, 7 Days to Die is an open-world game that is a unique combination of first person shooter, survival horror, tower defense, and role-playing games. It presents multiple features such as combat, crafting, looting, mining, exploration, and character growth....

September 4, 2021 路 12 min 路 Ruan Bekker

Setup Docker NFS Server

In this post we will see how quick and fast it is to setup a NFS Server using a Docker container using the itsthenetwork/nfs-server-alpine image. If you would like to install NFS Server using a non-docker based deployment, you can have a look at installing nfs server on ubuntu. Overview On our host we will use the local path: /data/docker-volumes to mount inside the container to /data and expose the port 2049 from the container to the host....

August 14, 2021 路 2 min 路 Ruan Bekker