Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Execute the command in the root mode.

    Code Block
    sudo apt-get install \
         apt-transport-https \
         ca-certificates \
         curl \
         gnupg2 \
         software-properties-common


  2. Add CPG key and fingerprints.

    Code Block
    curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add -
    sudo apt-key fingerprint 0EBFCD88


  3. . Add the official repository to the source.list.

    Code Block
    sudo add-apt-repository \
       "deb [arch=amd64] https://download.docker.com/linux/debian \
       $(lsb_release -cs) \
       stable"
     
    sudo apt-get update


  4. Install the Docker-ce and docker-compose (see https://github.com/docker/compose/releases).


    Code Block
    sudo apt-get install docker-ce docker-compose


  5. Add the system user to the docker group.

    Code Block
    sudo adduser user docker


  6. Log in the system under this user.

  7. Install Mercurial.

    Code Block
    sudo apt-get install mercurial


  8. Add string to the hgrc file.

    Code Block
    sudo nano ~/.hgrc
    


    Code Block
    [ui]
    tls = False


  9. Clone the repository.

    Code Block
    hg clone https://bitbucket.org/Axxonsoft/axxonone.docker /home/user/axxonone.docker

    Update the repository, if necessary.

    Code Block
    cd axxonone.docker
    hg pull -u