Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add docs for setting up WSL 2 & Docker #13345

Merged
merged 2 commits into from
Jan 25, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 40 additions & 1 deletion site/content/en/docs/drivers/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,46 @@ aliases:

The Docker driver allows you to install Kubernetes into an existing Docker install. On Linux, this does not require virtualization to be enabled.

{{% readfile file="/docs/drivers/includes/docker_usage.inc" %}}
## Requirements

- [Install Docker](https://hub.docker.com/search?q=&type=edition&offering=community&sort=updated_at&order=desc) 18.09 or higher
- amd64 or arm64 system.
- If using WSL complete [these steps]({{<ref "/docs/tutorials/wsl_docker_driver">}}) first

## Usage

Start a cluster using the docker driver:

```shell
minikube start --driver=docker
```
To make docker the default driver:

```shell
minikube config set driver docker
```

## Rootless Docker
### Requirements
- Docker 20.10 or higher, see https://rootlesscontaine.rs/getting-started/docker/
- Cgroup v2 delegation, see https://rootlesscontaine.rs/getting-started/common/cgroup2/

### Usage

Start a cluster using the rootless docker driver:

```shell
dockerd-rootless-setuptool.sh install -f
docker context use rootless

minikube start --driver=docker --container-runtime=containerd
```

The `--container-runtime` flag must be set to "containerd" or "cri-o".

The restrictions of rootless `kind` apply to minikube with rootless docker as well.
spowelljr marked this conversation as resolved.
Show resolved Hide resolved

See https://kind.sigs.k8s.io/docs/user/rootless/ .

## Special features

Expand Down
39 changes: 0 additions & 39 deletions site/content/en/docs/drivers/includes/docker_usage.inc

This file was deleted.

17 changes: 17 additions & 0 deletions site/content/en/docs/tutorials/wsl_docker_driver.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
title: "Setting Up WSL 2 & Docker Desktop"
linkTitle: "Setting Up WSL 2 & Docker Desktop"
weight: 1
date: 2022-01-12
---

## Overview

- This guide will show you how to setup WSL 2 and Docker Desktop.


## Steps
Microsoft and Docker have in-depth guides for both, just follow along for a successful setup!

1. [Install WSL](https://docs.microsoft.com/en-us/windows/wsl/install)
2. Install and setup [Docker Desktop for Windows](https://docs.docker.com/desktop/windows/wsl/#download)