$schemamarkup = get_post_meta(get_the_ID(), 'schemamarkup', true); if(!empty($schemamarkup)) { echo $schemamarkup; }

Step-by-step – Docker Ubuntu 20.10 Installation

October 16, 2020 | By the+gnu+linux+evangelist.

Installing

  1. 2. Preinstallation Testing

    Check if a Previous Docker Version is Installed
    With:

    Copy
    which docker

    If Yes then Remove that with:

    Copy
    sudo apt remove docker docker-engine
  2. 3. Installing Packages

    Install PreRequisite Packages.

    Copy
    sudo apt install apt-transport-https ca-certificates software-properties-common  
    

    Authenticate with the User Admin Pass.
    If Got “User is Not in Sudoers file” then see: How to Enable sudo.

  3. 5. Setting Up Docker CE Repo

    How to Setup the Docker CE Apt Repository

    Here Docker Repo Setup
    How to Setup Docker Repository for Docker CE Installation on Ubuntu 20.10 Groovy
  4. 6. Installing Docker CE

    Then to Install Docker CE
    Simply run:

    Copy
    sudo apt install docker-ce

Contents