Go to documentation repository
Page History
...
Update the lists.
Code Block sudo apt-get update
Install the packages to use the repository via HTTPS
Code Block $ sudo apt-get install \ apt-transport-https \ ca-certificates \ curl \ software-properties-common
Add the official Docker GPG key.
Code Block $ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add
- Set up the repository:
for x86_64 / amd64 architecture:
Code Block $ sudo add-apt-repository \ "deb [arch=amd64] https://download.docker.com/linux/ubuntu \ $(lsb_release -cs) \ stable"
for armhf architecture:
Code Block $ sudo add-apt-repository \ "deb [arch=armhf] https://download.docker.com/linux/ubuntu \ $(lsb_release -cs) \ stable"
Update the lists.
Code Block sudo apt-get update
Install the docker-ce.
Code Block sudo apt-get install docker-ce
Check the current version of docker-compose and upgrade it to the latest version, if necessary.
Code Block sudo curl -L https://github.com/docker/compose/releases/download/1.21.2/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose
Set the access permissions.
Code Block sudo chmod +x /usr/local/bin/docker-compose
Check the installation and version of docker-compose.
Code Block docker-compose --version
Add the user to Docker.
Code Block sudo usermod -aG docker user
Install the Mercurial.
Code Block sudo apt-get install mercurial
Add to the hgrc file
Code Block sudo nano ~/.hgrc
the following:
Code Block [ui] tls = False
Clone the repository.
Code Block hg clone https://bitbucket.org/AxxonsoftAxxonSoft/axxonnextAxxon One.docker /home/pc/axxonnextAxxon One.docker
Update the repository if necessary.
Code Block cd axxonnextAxxon One.docker hg pull -u
Restart the OS.
Code Block sudo reboot
Overview
Content Tools