Minikube on Ubuntu
Docker and Minikube Setup Guide for Ubuntu 24.04
This guide provides instructions for setting up Docker and Minikube on Ubuntu 24.04, along with useful shell scripts to automate the process.
Table of Contents
Manual Installation
Installing Docker
- First, update your system packages:
sudo apt updatesudo apt upgrade -y
- Install required packages for Docker:
sudo apt install -y apt-transport-https ca-certificates curl software-properties-common
- Add Docker’s official GPG key:
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
- Set up the Docker repository:
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
- Update package lists again and install Docker:
sudo apt updatesudo apt install -y docker-ce docker-ce-cli containerd.io
- Verify Docker installation:
sudo docker --version
- Add your user to the Docker group to run Docker without sudo:
sudo usermod -aG docker $USER
Note: You’ll need to log out and log back in for this change to take effect.
- Verify Docker is working correctly:
docker run hello-world
Installing Minikube
- Install required packages for Minikube:
sudo apt install -y curl wget apt-transport-https
- Download the latest Minikube binary:
curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64
- Install Minikube:
sudo install minikube-linux-amd64 /usr/local/bin/minikube
- Install kubectl:
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"sudo install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl
- Verify the installations:
minikube versionkubectl version --client
Starting Minikube
- Start Minikube with Docker as the driver:
minikube start --driver=docker
- Verify Minikube status:
minikube status
- Enable the Kubernetes dashboard (optional):
minikube dashboard
Additional Tips
- To stop Minikube when not in use:
minikube stop
- To delete the Minikube cluster:
minikube delete
- To set Docker as the default driver for Minikube:
minikube config set driver docker
Installation Scripts
To make the installation process easier, you can use the following shell scripts.
How to Use the Scripts
-
Save all four scripts to the same directory.
-
Make them executable:
Terminal window chmod +x install-docker.sh install-minikube.sh minikube-utils.sh setup-all.sh -
To perform a complete installation, run:
Terminal window ./setup-all.sh -
After installation completes, log out and log back in for the Docker group changes to take effect.
-
To manage your Minikube cluster, use the utility script:
Terminal window ./minikube-utils.sh start # Start Minikube./minikube-utils.sh status # Check status./minikube-utils.sh dashboard # Open Kubernetes dashboard./minikube-utils.sh help # See all available commands
Script Descriptions
- install-docker.sh - Automates the Docker installation process
- install-minikube.sh - Installs Minikube and kubectl
- minikube-utils.sh - Provides a convenient interface for managing your Minikube cluster
- setup-all.sh - Master script that runs the installation scripts in sequence
Script Contents
install-docker.sh
#!/bin/bash
# Script to install Docker on Ubuntu 24.04# Usage: bash install-docker.sh
set -e # Exit immediately if a command exits with a non-zero status
echo "=== Installing Docker on Ubuntu 24.04 ==="echo "Updating system packages..."sudo apt updatesudo apt upgrade -y
echo "Installing prerequisites..."sudo apt install -y apt-transport-https ca-certificates curl software-properties-common
echo "Adding Docker's official GPG key..."curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
echo "Setting up Docker repository..."echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
echo "Installing Docker..."sudo apt updatesudo apt install -y docker-ce docker-ce-cli containerd.io
echo "Adding current user to the Docker group..."sudo usermod -aG docker $USER
echo "Verifying Docker installation..."docker --version
echo "===================================="echo "Docker has been successfully installed!"echo "Please log out and log back in for the group changes to take effect."echo "After logging back in, run 'docker run hello-world' to verify the installation."echo "===================================="
install-minikube.sh
#!/bin/bash
# Script to install Minikube and kubectl on Ubuntu 24.04# Usage: bash install-minikube.sh
set -e # Exit immediately if a command exits with a non-zero status
echo "=== Installing Minikube on Ubuntu 24.04 ==="echo "Installing prerequisites..."sudo apt install -y curl wget apt-transport-https
echo "Downloading Minikube..."curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64
echo "Installing Minikube..."sudo install minikube-linux-amd64 /usr/local/bin/minikuberm minikube-linux-amd64
echo "Downloading kubectl..."curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
echo "Installing kubectl..."sudo install -o root -g root -m 0755 kubectl /usr/local/bin/kubectlrm kubectl
echo "Verifying installations..."echo "Minikube version:"minikube versionecho "Kubectl version:"kubectl version --client
echo "Setting Docker as the default driver for Minikube..."minikube config set driver docker
echo "===================================="echo "Minikube and kubectl have been successfully installed!"echo "To start Minikube, run: minikube start"echo "===================================="
minikube-utils.sh
#!/bin/bash
# Utility script for managing Minikube# Usage: bash minikube-utils.sh [command]
set -e # Exit immediately if a command exits with a non-zero status
# Show usage informationshow_usage() { echo "Minikube Utility Script" echo "Usage: bash minikube-utils.sh [command]" echo "" echo "Available commands:" echo " start - Start Minikube cluster" echo " stop - Stop Minikube cluster" echo " status - Check Minikube status" echo " delete - Delete Minikube cluster" echo " dashboard - Open Kubernetes dashboard" echo " addons - List and enable/disable addons" echo " help - Show this help information" echo "" echo "Examples:" echo " bash minikube-utils.sh start" echo " bash minikube-utils.sh addons enable ingress"}
# Start Minikubestart_minikube() { echo "Starting Minikube with Docker driver..." minikube start --driver=docker echo "Minikube started successfully." minikube status}
# Stop Minikubestop_minikube() { echo "Stopping Minikube..." minikube stop echo "Minikube stopped."}
# Check Minikube statuscheck_status() { echo "Checking Minikube status..." minikube status}
# Delete Minikube clusterdelete_minikube() { echo "Deleting Minikube cluster..." minikube delete echo "Minikube cluster deleted."}
# Open Kubernetes dashboardopen_dashboard() { echo "Opening Kubernetes dashboard in your default browser..." minikube dashboard}
# Manage addonsmanage_addons() { if [ "$#" -eq 0 ]; then echo "Listing available addons..." minikube addons list echo "" echo "To enable an addon: bash minikube-utils.sh addons enable ADDON_NAME" echo "To disable an addon: bash minikube-utils.sh addons disable ADDON_NAME" return fi
action=$1 addon=$2
if [ "$action" = "enable" ]; then echo "Enabling $addon addon..." minikube addons enable $addon echo "$addon addon enabled." elif [ "$action" = "disable" ]; then echo "Disabling $addon addon..." minikube addons disable $addon echo "$addon addon disabled." else echo "Unknown addon action: $action" echo "Use 'enable' or 'disable'" fi}
# Main functionmain() { if [ "$#" -eq 0 ]; then show_usage exit 0 fi
command=$1 shift # Remove the first argument (the command) from the arguments list
case $command in start) start_minikube ;; stop) stop_minikube ;; status) check_status ;; delete) delete_minikube ;; dashboard) open_dashboard ;; addons) manage_addons "$@" ;; help) show_usage ;; *) echo "Unknown command: $command" show_usage exit 1 ;; esac}
# Run the main function with all argumentsmain "$@"
setup-all.sh
#!/bin/bash
# Master script to setup Docker and Minikube on Ubuntu 24.04# Usage: bash setup-all.sh
set -e # Exit immediately if a command exits with a non-zero status
echo "================================================================"echo "Starting complete Docker and Minikube setup for Ubuntu 24.04"echo "================================================================"
# Make sure all scripts are executablechmod +x install-docker.shchmod +x install-minikube.shchmod +x minikube-utils.sh
# Step 1: Install Dockerecho "Step 1: Installing Docker..."./install-docker.sh
# Step 2: Install Minikube and kubectlecho "Step 2: Installing Minikube and kubectl..."./install-minikube.sh
echo "================================================================"echo "Setup complete! Please log out and log back in for Docker group"echo "changes to take effect. After logging back in, you can use"echo "minikube-utils.sh to manage your Minikube cluster."echo ""echo "Example commands:"echo " bash minikube-utils.sh start - Start Minikube"echo " bash minikube-utils.sh dashboard - Open Kubernetes dashboard"echo " bash minikube-utils.sh help - See all available commands"echo "================================================================"