Hello,
In this week’s feature highlight, we look at How to Install and use Docker Compose on Ubuntu 21.04
Installing Docker on Ubuntu
Check for system updates and install it.
apt update
apt upgrade
Install basic dependencies.
apt install apt-transport-https ca-certificates curl gnupg-agent software-properties-common
Output:
root@vps:~# apt install apt-transport-https ca-certificates curl gnupg-agent software-properties-common
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
ca-certificates is already the newest version (20210119build1).
ca-certificates set to manually installed.
curl is already
… Read More