Raspberry pi Home Lab
I've been using a home lab for a number of years now, just to play with different software and services. At the end of last year, the setup was a proxmox hypervisor on a custom PC I built when I left school, so it was starting to show its age. At the end of 2020 to make that year even worse, my home lab gave up and would refuse to boot. Luckily, there was nothing too important on there, but I learnt a lesson about backups that day. There were a lot of VM's in there that had been powered off for months, so it got me thinking for a new home lab in if I could use some raspberry pi's that I had sitting in my draw doing nothing. So I made the following list of services I require in a home lab;
GitLab
Having a self hosted GitLab instance allows me to have all my code & projects local, but with all the power of git
. GitLab works very well in my workflow for learning new topics / languages, and with the repository mirroring feature, I can push to gitlab.com with ease.
Installing GitLab on the raspberry pi, was surprisingly simple, however, I did have to order a raspberry pi model 4. Once that arrived, I just followed the installation documentation.
I like to use the builtin CI/CD to test and deploy services. To do this at home I installed a GitLab runner on the next raspberry pi, as its advised not to install a runner on the same server as GitLab.
Portainer
Portainer is a nice web interface to docker, although docker in the terminal is nice. I followed this guide to install Portainer on the raspberry pi. The only step that is different from the official guide is specifying to use the linux-arm
image. Which brings me to a consideration, as the raspberry pi has an arm
processor, some docker images are not built to run on arm
. For example, attempting to run the official kalilinux docker constainer results in a failure with the error that it does not match the host platform.
pi@portainerpi:~ $ docker run --rm -it kalilinux/kali-rolling /bin/bash WARNING: The requested image's platform (linux/amd64) does not match the detected host platform (linux/arm/v7) and no specific platform was requested standard_init_linux.go:219: exec user process caused: exec format error
This can be a little frustrating, luckily there is a good list of containers built to run on the raspberry pi. If its not in that list it may take a bit of searching, for example, I use the antoineb/kalilinux-arm
base container for the majority of what I do within kali linux.
pi@portainerpi:~ $ docker run --rm -it antoineb/kalilinux-arm /bin/bash root@18aaed4c585b:/# cat /etc/issue Kali GNU/Linux 2.0 \n \l root@18aaed4c585b:/#
I also installed a GitLab runner on this raspberry pi as it will use docker.
Network Share
Unfortunately, not everything can or fits well inside of a git
repository. I don't use this that often, but its worth having ( with backups this time :) ). I attached a 500GB external HDD to another raspberry pi, and then followed this guide to set up a smb
share on the external HDD.
I consider this raspberry pi more of a "test pi" than a critical service, I've installed nginx
on this to serve some static images, and installed postgresql
should I actually need a DBMS
.
Windows
Ah, sometimes I need to try something within a windows environment and my home lab does not support this right now. For now, the need for windows is so low, I'm happy having a windows VM on my laptop for those odd occasions, If i find myself needing this environment more, I'll look into setting up windows on a raspberry pi.
Conclusion
So hopefully this helped someone, If anything it was a place for me to include all the links I used to set up my home lab. However, if it did help you, please let me know.