-->

DEVOPSZONES

  • Recent blogs

    Install docker on Ubuntu

    Install docker on Ubuntu




    Login to your server and update the software repository.

    root@dockerserver# apt-get update

    Install docker.io with this apt command:

    root@dockerserver# apt-get install docker.io
    Now start the docker service and enable it to start at boot time:

    systemctl start docker
    systemctl enable docker



    No comments