-
Notifications
You must be signed in to change notification settings - Fork 27
install docker windows
Olga Naumenko edited this page May 17, 2023
·
1 revision
Get ready for creating a Docker container:
- Make sure you have created a WSL container with Ubuntu 18.04:
wsl --list --verbose
- Navigate to the container:
wsl
- In this container, install Docker and create a Docker user:
sudo apt update
sudo apt install docker.io -y
sudo usermod -aG docker $User
- Start the Docker daemon:
sudo dockerd