Member-only story
If you use Docker, check this out!
3 min readNov 18, 2021
Welcome back! Docker is an awesome tool for deploying our software, if you’re new to Docker, check out the link below to learn more:
So, what if you wanted to run MacOSX in Docker? Well, you actually can! There is a project on GitHub that allows us to do this, check out the link below to jump straight to this project:
If you want to set this up, all we have to do is use the following commands:
# ARCH
sudo pacman -S qemu libvirt dnsmasq virt-manager bridge-utils flex bison iptables-nft edk2-ovmf
# UBUNTU DEBIAN
sudo apt install qemu qemu-kvm libvirt-clients libvirt-daemon-system bridge-utils virt-manager libguestfs-tools
# CENTOS RHEL FEDORA
sudo yum install libvirt qemu-kvm
Then you can enable these modules:
sudo systemctl enable --now libvirtd
sudo…