-
Notifications
You must be signed in to change notification settings - Fork 2
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.
-
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 withdocker rmi IMAGE_NAME
to avoid confusion. -
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
- Change your present working directory to the newly cloned repo directory.
cd docker-hadoop
- 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.
-
"docker buildx build" requires exactly 1 argument
Perhaps you missed the dot at the end