DEV Community

Cover image for Windows, WSL, Docker, and Free Starters
Sm0ke
Sm0ke

Posted on • Originally published at blog.appseed.us

Windows, WSL, Docker, and Free Starters

Hello Coders!

This article presents how to install WSL and Docker on Windows and later execute a few open-source samples on top of this popular virtualization stack. For newcomers, WSL is a layer provided by Microsoft that allows us to execute all commands exposed by a native Linux distro and Docker is a popular virtualization software used to deliver and execute software programs in isolated environments.

Thanks for reading!


✨ Install WSL

The Windows Subsystem for Linux lets developers run a GNU/Linux environment directly on Windows. The latest version is WSL 2, which powers the Windows Subsystem for Linux to run ELF64 Linux binaries on Windows.

The installation and overall management can be executed via a PowerShell terminal using simple commands:

List available WSL distros

$ wsl -l -o

NAME            FRIENDLY NAME
Ubuntu          Ubuntu
Debian          Debian GNU/Linux
kali-linux      Kali Linux Rolling
openSUSE-42     openSUSE Leap 42
SLES-12         SUSE Linux Enterprise Server v12
Ubuntu-16.04    Ubuntu 16.04 LTS
Ubuntu-18.04    Ubuntu 18.04 LTS
Ubuntu-20.04    Ubuntu 20.04 LTS
Enter fullscreen mode Exit fullscreen mode

Install Ubuntu in WSL

$ wsl --install Ubuntu
Enter fullscreen mode Exit fullscreen mode

Check Current Version

$ wsl -l -v
Enter fullscreen mode Exit fullscreen mode

Update from WSL 1 to WSL 2 (recommended version)

$ wsl --set-version Ubuntu 2
Enter fullscreen mode Exit fullscreen mode

Once WSL is installed and we have a usable Linux Distro, we can move forward and install Docker Desktop.


✨ Install Docker on Windows

Docker is an open platform for developing, shipping, and running applications. Docker enables you to separate your applications from your infrastructure so you can deliver software quickly. Before running this simple setup, make sure your workstation provides all requirements:

  • Windows 11/10 64Bit
  • WSL - up & running

Access the download page and download the installer. Double-click Docker Desktop Installer.exe and execute the installer.

When prompted, ensure the Enable Hyper-V Windows Features or the Install required Windows components for WSL 2 option is selected on the Configuration page.

Docker Desktop does not start automatically after installation. To start Docker Desktop we need to locate the app in the Windows menu and start the service.

If all goes well we should be able to execute this test command in the terminal and also access the UI:

$ docker run -d -p 80:80 docker/getting-started 
Enter fullscreen mode Exit fullscreen mode

Docker Desktop UI.


With Docker and WSL up & running, we start using this virtualization layer by installing and playing with a few open-source apps.


✨ Django Dashboard Material

Simple, open-source crafted with database, authentication, and Docker support on top of a modern Bootstrap 5 design. The codebase uses Django 3.2.6 LTS and simple Gulp tooling for assets management (SCSS, JS).

Let's start the app using provided Docker setup.

✨ Step #1 - Download sources from the public repository

$ git clone https://github.com/app-generator/django-dashboard-material.git
$ cd django-dashboard-material
Enter fullscreen mode Exit fullscreen mode

✨ Step #2 - Start in Docker

$ docker-compose up --build
Enter fullscreen mode Exit fullscreen mode

Django Material Dashboard - Start in Docker and WSL.


✨ Flask Pixel Lite

Open-Source Flask starter coded with basic modules, database, ORM, and deployment scripts on top of Pixel Lite UI Kit, a fully responsive and modern Bootstrap 5 UI Kit that will help you build creative and professional websites. The Flask codebase comes with basic modules, database, ORM, and deployment scripts.


✨ Step #1 - Download sources from the public repository

$ git clone https://github.com/app-generator/flask-pixel.git
$ cd flask-pixel
Enter fullscreen mode Exit fullscreen mode

✨ Step #2 - Start in Docker

$ docker-compose up --build
Enter fullscreen mode Exit fullscreen mode

Flask Pixel Lite - Start in Docker and WSL.


✨ Django Material Kit

Open-Source seed project generated by AppSeed in Django Framework on top of Material Kit design. Designed for those who like bold elements and beautiful websites, Material Kit 2 is ready to help you create stunning websites and web apps.

Material Kit 2 is built with over 60 frontend individual elements, like buttons, inputs, navbars, nav tabs, cards, or alerts, giving you the freedom of choosing and combining.


✨ Step #1 - Download sources from the public repository

$ git clone https://github.com/app-generator/django-material-kit.git
$ cd django-material-kit
Enter fullscreen mode Exit fullscreen mode

✨ Step #2 - Start in Docker

$ docker-compose up --build
Enter fullscreen mode Exit fullscreen mode

Django Material Kit - Start in Docker.


Thanks for reading! For more resources, feel free to access:

Latest comments (9)

Collapse
 
lblblong profile image
lblblong

I use WSL to distinguish between work and life

Collapse
 
highcenburg profile image
Vicente G. Reyes

I was just literally looking at installing Ubuntu on my Dad's laptop lol

Collapse
 
sm0ke profile image
Sm0ke

πŸš€πŸš€

Collapse
 
highcenburg profile image
Vicente G. Reyes

Is 12gb enough to run docker on windows?

Thread Thread
 
sm0ke profile image
Sm0ke

I have 8gb. Should be ok

Collapse
 
crearesite profile image
WebsiteMarket

WSL is super useful for Windows users

Collapse
 
sm0ke profile image
Sm0ke

πŸš€πŸš€

Collapse
 
uithemes profile image
ui-themes

Thanks for sharing!

Collapse
 
sm0ke profile image
Sm0ke

πŸš€πŸš€