Posts

Showing posts from March, 2023

How to install Docker Desktop on Ubuntu

How to install Docker Desktop on Ubuntu First, update your system's package list using the following command: sql Select and Copy this code sudo apt - get update Next, install some prerequisite packages that allow the use of packages over HTTPS: arduino Select and Copy this code sudo apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common Import the Docker GPG key using the following command: arduino Select and Copy this code curl -fsSL https: //download.docker.com/linux/ubuntu/gpg | sudo apt-key add - Add the Docker repository to your system's APT sources: bash Select and Copy this code sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" Update the package list again: sql Select and Copy this code sudo apt - get update Finally, install Docker Desktop: arduino Select and Copy this code sudo apt-get install docker-ce docker-ce-cli containerd.io To verify that Docke...

How to install docker desktop in windows 10, 11

How to install docker desktop in windows Docker is a platform for developers to create, deploy, and run applications using containerization technology. With Docker, you can build and package your applications into containers that can be deployed anywhere, making it easy to move your application from development to production. Docker Desktop is a tool that provides an easy-to-use interface for managing Docker on Windows. In this tutorial, we will walk you through the steps to install Docker Desktop on Windows. Step 1: Check System Requirements Before installing Docker Desktop, you should ensure that your system meets the minimum requirements: Windows 10 64-bit: Pro, Enterprise, or Education, version 1903 or higher, with Build 18362 or higher. For Windows 10 Home: Docker Desktop requires Windows 10 Pro or Enterprise version 1903 or higher, and WSL 2. Follow this guide to install WSL2(Windows Subsystem for Linux) Hyper-V and Containers Windows features must be enabled. 4GB of RAM or more....