Installing Docker (Updated)

It is 2024. Why aren’t you containerizing your applications?

Well if you are looking to install and deploy Docker containers, follow the tutorial below.

Note: This tutorial assumes you have an Ubuntu-based operating system and sudo access to command line.

Step 1: Copy the following command:

wget https://raw.githubusercontent.com/gr3yspace/docker/main/docker_install_2024.sh

This will download a script I threw together. Feel free to review it.

Step 2: Make the script executable so it can setup docker.

sudo chmod +x docker_install_2024.sh

Step 3: Run the script and let it do its thing.

./docker_install_2024.sh

After this sucessfully installs, you should be see the ‘Hello World’ message.

This means everything was installed properly and you are off to the races.

Well done, you’ve installed Docker and are now able to spin up containers on a whim.

Leave a comment