We are using docker desktop which has been licensed and this is really annoying for all developers. Good news is that, there is way to get rid of docker desktop and continue doing our great engineering work with docker CLI. Here is the step by step guide to install Docker CLI on MAC - Uninstall Docker Desktop > brew uninstall docker Also check Docker Desktop is removed from MAC as well. If not, delete the Docker desktop app from Applications folder. Install Hyperkit > brew install hyperkit If you are receiving any issue while installing hyperkit like below, it is because, sometime deletion of docker gives error, if it is not able to find the required folder. > Error: Permission denied @ apply2files - /usr/local/lib/docker/cli-plugins Lets fix this issue by creating the folder once and running cleanup command - > mkdir -p /Applications/Docker.app/Contents/Resources/cli-plugins > brew cleanup Try installing hyperkit again, > brew install hyperkit It should be ins
Before moving ahead with this article, I assume you have Solr installed and running. If you would like to install Solr on windows, mac or via docker, please read Setup a Solr instance . There are several ways to install nutch which you can read from Nutch tutorial , however I have written this article for those who would like to install nutch using docker. I tried finding help on google but could not find any help for nutch installation using docker and spent good amount of time fixing issues specific to it. Therefore I have written this article to help and save time of other developers. Install nutch using docker- 1. Pull docker image of nutch using below command, > docker pull apache/nutch 2. Once image is pulled, run the container, > docker run -t -i -d --name nutchcontainer apache/nutch /bin/bash 3. You should be able to enter in the container and see bash prompt, > bash-5.1# Let's setup few important settings now- 1. Goto bin folder, > bash-5.