Docker
Installation Please visit the official documentation page but do not forget to add the permission problem:
1 |
sudo usermod -a -G docker $USER |
Docker image If the image doesn’t exist it will pull it from hub.docker.com Basically, it runs the pull command beforehand:
1 |
docker pull <image_name:tag_name> |
for instance, to install Ubuntu 20.04
1 |
docker pull ubuntu:20.04 |
to check the version, just run:
1 |
lsb_release -a |
To see available […]