Skip to main content

How to Install Docker on Windows 11, iOS 17, and Ubuntu 20

Docker is a popular platform used to develop, ship, and run applications. It allows you to separate your applications from your infrastructure so you can deliver software quickly. In this blog post, we will guide you through the process of installing Docker on Windows 11, iOS 17, and Ubuntu 20.


Installing Docker on Windows 11

Download Docker Desktop: Visit the official Docker website and download Docker Desktop for Windows.

Install Docker Desktop: Double-click the downloaded Docker Desktop Installer.exe to run the installer.

Configuration: By default, Docker Desktop is installed at C:\Program Files\Docker\Docker1. When prompted, ensure the “Use WSL 2 instead of Hyper-V” option on the Configuration page is selected or not depending on your choice of backend.

Verification: To verify Docker is installed correctly, open a terminal (Command Prompt or PowerShell) and run: docker --version. This command should display the Docker version, indicating a successful installation.

Installing Docker on iOS 17

Currently, Docker does not officially support iOS. Docker requires a Linux kernel to run, and iOS is built on a FreeBSD flavor of Unix3. However, developers are exploring ways to run Docker on iOS, and we might see some solutions in the future3.


Installing Docker on Ubuntu 20

Update your system: Update your existing list of packages with sudo apt update.

Prerequisites: Install a few prerequisite packages which let apt use packages over HTTPS: sudo apt install apt-transport-https ca-certificates curl software-properties-common.

Add the GPG key: Add the GPG key for the official Docker repository to your system with curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add.

Add Docker repository to APT sources: Add the Docker repository to APT sources with sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu focal stable".

Install Docker: Finally, install Docker with sudo apt install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin.

By following these steps, you should be able to install Docker on Windows 11 and Ubuntu 20. For iOS users, stay tuned for future updates from Docker.

Comments

Popular posts from this blog

Completed UiPath - RPA Developer Advance Training

After a month of training, with late nights and weekends I have completed the UiPath RPA Developer Advance Training. The Level 1 Foundation Training pretty much covered all the basics of Desktop studio and workflows, only draw back was I started with the default foundation course which was for 2016, and all document reference links where pointing to 2016 version. I didn't understand it during the foundation training and kept switching to 2018 version document/page. Only after completing the Foundation course that I realized, I was suppose to have started with the 2018 version of Level 1 Foundation Training, but as it was optional I didn't have to retake the 2018 version, the 2016 was good enough for moving to level 2. The Level 2 Orchestrator 2018.3 Training as good. It gave good understanding of Queue's, Jobs, and schedules and I was able to complete the level two much faster then the level 1. The Level 3 UiPath Advanced Training was bit tough as it involved the a

KB 294807 - IIS Server - PHP FastCGI 500 Error 0xfffffffe

Resolved issue today of IIS Server - PHP FastCGI 500 Error 0xfffffffe by deleting "Windows Temp" folder files. We used Cygwin to customize some permissions of "Windows Temp" folder and after few hours the website stopped working. The search online was giving all kinds of different solution except what I was looking for. I was hoping the stackoverflow will have answers but even this post didn't cover the issue I was running into. https://stackoverflow.com/questions/15302080/fastcgi-500-failure Restarting the IIS didn't work, but deleting temp files cleared the issue, but now the problem is how long before the site will go down again? Hope the issue is resolved for ever, if not; I will update this post later.

QlikSense - Custom Form Login Screen

Extension of:  Custom login, logout and error forms for Qlik Sense by RPK https://developer.qlik.com/garden/5ada5a8f0c313f5c539dc7fd QlikSense - Custom Login Screen Install Node on QlikSense Server: URL: https://nodejs.org/en/ Saved at: C:\server-tools\Downloads\Node Installed at: C:\server-tools\Runtime\nodejs\ Keep default options Create Folder: C:\QlikForm Clone git Repository and keep updates private: # Open Shell/Bash/Command Prompt cd /QlikForm # Ref: https://medium.com/@bilalbayasut/github-how-to-make-a-fork-of-public-repository-private-6ee8cacaf9d3 git clone --bare https://github.com/kreta99/QS-Custom-Forms .git cd QS-Custom-Forms.git git push --mirror https://github.com/<name>/QS-Custom-Forms.git cd .. (go to parent folder) # remove other users repo clone rm -rf QS-Custom-Forms.git # clone witinc private repo git clone https://github.com/<name>/QS-Custom-Forms.git Get latest copy of login pages: # Open She