Xubuntu + docker

5,038

Certainly! That's one of the many benefits of running Linux on your desktop or laptop.

I would recommend installing Docker CE (Community Edition) from their official repository using their documentation.

Here's how to install it in short:

  • Install some prerequisites:

    • sudo apt install apt-transport-https ca-certificates curl software-properties-common
  • Add Docker's GPG key:

    • curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
  • Add Docker's repository:

    • sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
  • Update and install:

    • sudo apt update
    • sudo apt install docker-ce
Share:
5,038

Related videos on Youtube

Kendall
Author by

Kendall

I websites, games and rich interactive applications (RIAs). I am proficient in PHP 4/5, MySQL, JQuery. use and develop for Web Services such as Facebook, Instagram, Twitter, Google and Youtube. I develop using frameworks such as VueJS, jQuery, PugJS, Sass, SlimPHP, Laravel, Idiorm and Paris, and Wordpress. I also worked using Adobe Illustrator, Adobe Photoshop, Git and Docker software applications.

Updated on September 18, 2022

Comments

  • Kendall
    Kendall almost 2 years

    I recently installed Xubuntu Desktop with the intention of using it as a dev server as well.

    Can Xubuntu run Docker/ Docker containers?

    • Admin
      Admin almost 7 years
      Why would Xubuntu be any different from Ubuntu and other variants regarding software support?