Skip to content

Building your own Docker image

Suraj B M edited this page Feb 8, 2024 · 1 revision

This method is not recommended, and it is highly suggested to use a pre-built image.

Steps

  1. Make sure you don't have any old versions of this repository in your PC. If you do, just delete the folders. Also, list all images using docker images and delete any old versions with docker rmi IMAGE_NAME to avoid confusion.

  2. Make a clone of your CPU-specific branch of this repository on your PC.

# AMD-based (Intel)
git clone -b amd --single-branch https://github.com/silicoflare/docker-hadoop

# ARM-based (Mac M series)
git clone -b arm --single-branch https://github.com/silicoflare/docker-hadoop
  1. Change your present working directory to the newly cloned repo directory.
cd docker-hadoop
  1. Start the build by executing the following command.
docker build -t hadoop .

The dot at the end is required.

Wait for the build to finish. It will take a long time. Make sure you have a good internet connection.


Common Errors

  • "docker buildx build" requires exactly 1 argument
    Perhaps you missed the dot at the end
Clone this wiki locally