I share example how to install docker on ubuntu using default repositories:
Steps:
1. Update Software repositories on terminal
sudo apt-get update
2. If you have old version uninstall.
sudo apt-get remove docker docker-engine docker.io
3. Install Docker.
sudo apt install docker.io
4. Start and Automate Docker.
sudo systemctl start docker
sudo systemctl enable docker
5. Check version.
docker --version
That is it.
References: https://phoenixnap.com/kb/how-to-install-docker-on-ubuntu-18-04
Subscribe to:
Post Comments (Atom)
Virtual Threads in Java 21: Simplified Concurrency for Modern Applications
With Java 21, Virtual Threads have redefined how we approach concurrency, offering a lightweight and efficient way to handle parallel and ...
-
SAML V2.0 SAML version 2.0 was approved as an OASIS Standard in March 2005. Approved Errata for SAML V2.0 was last produced by the SSTC on 1...
-
Introduction In today's software landscape, designing robust and scalable REST APIs is a crucial aspect of application development. Wit...
-
Spring Boot 3 Spring boot 3 Features : Spring Boot 3.0 will require Java 17 or later Jakarta EE 9 a new top-level jakarta package, replacin...
No comments:
Post a Comment