To install the Docker, do the following:
Execute the command in the root mode.
sudo apt-get install \ apt-transport-https \ ca-certificates \ curl \ gnupg2 \ software-properties-common |
Add CPG key and fingerprints.
curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add - sudo apt-key fingerprint 0EBFCD88 |
. Add the official repository to the source.list.
sudo add-apt-repository \ "deb [arch=amd64] https://download.docker.com/linux/debian \ $(lsb_release -cs) \ stable" sudo apt-get update |
Install the Docker-ce and docker-compose (see https://github.com/docker/compose/releases).
sudo apt-get install docker-ce docker-compose |
Add the system user to the docker group.
sudo adduser user docker |
Log in the system under this user.
Install Mercurial.
sudo apt-get install mercurial |
Add string to the hgrc file.
sudo nano ~/.hgrc |
[ui] tls = False |
Clone the repository.
hg clone https://bitbucket.org/Axxonsoft/axxonone.docker /home/user/axxonone.docker |
Update the repository, if necessary.
cd axxonone.docker hg pull -u |