Docker is a very important tool for developers, devops and system administrator, docker can make those people life easier. In this tutorial i will show you how to install docker ce (community edition) on lubuntu 17.10 artful.
If you already install docker.io on lubuntu, that means you are using the older version of docker. There are two kinds of docker now days, docker ee (enterprise edition) and docker ce (community edition).
How to install Docker CE on Lubuntu 17.10
- make sure the old docker (docker.io) is uninstalled (if previously installed)
- run update command
sudo apt-get update
sudo apt-get install apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu artful stable"
sudo apt-get update
sudo apt-get install docker-ce
Hey Can u make tutorial how to uninstall wine program or Wine itself from lubuntu?
ReplyDeleteyou can run this command:
Deletesudo apt-get purge wine
or this:
sudo apt-get remove wine
or this:
sudo apt-get remove "^wine.*"