Today we will highlight one of the best and most useful apps for Ubuntu and Linux administrators. I am talking about Docker. Heard of it? Probably but at the time you probably had no idea what it is or why you see it pop up on some web sites here and there. Okay, maybe that is just my experience but while at work, a co-worker recommended upgrade our network and he recommended Docker. I was like, wtf is Docker? Let’s find out.
What Is Docker?
Docker is an app that makes it simple and easy to run application processes in a container, which are like virtual machines, only more portable, more lightweight which means they are naturally resource friendly, and more dependent on the host operating system. Docker provides an open platform for developers and sysadmins to build, package, and run applications anywhere as a lightweight Docker container. Docker automates the deployment of applications inside software containers.Install Docker For Ubuntu
- Log into your Ubuntu installation as a user with sudo privileges.
- Update your APT package index.
$ sudo apt-get update
- Install Docker.
$ sudo apt-get install docker-engine
- Start the docker daemon.
$ sudo service docker start
- Verify docker is installed correctly.
$ sudo docker run hello-world
This command downloads a test image and runs it in a container. When the container runs, it prints an informational message. Then, it exits.
0 comments:
Post a Comment
Note: only a member of this blog may post a comment.