Versions Compared

Key

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

To install the Aby zainstalować Docker, do the following:wykonaj następujące czynności:

  1. Uruchom następującą komendę z uprawnieniami roota: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 fingerprintsDodaj klucz CPG oraz fingerprint.

    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 sourceDodaj oficjalne repozytorium do 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 Zainstaluj Docker-ce and oraz docker-compose (see zobacz: https://github.com/docker/compose/releases).


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


  5. Add the system user to the docker groupDodaj użytkownika systemu do grupy docker.

    Code Block
    sudo adduser user docker
  6. Log in the system under this user.


  7. Zaloguj się do systemu korzystając z użytkownika w punkcie 5.

  8. Zainstaluj Install Mercurial.

    Code Block
    sudo apt-get install mercurial


  9. Add string to the hgrc file.Dodaj następującą linię do pliku hgrc:

    Code Block
    sudo nano ~/.hgrc
    


    Code Block
    [ui]
    tls = False


  10. Clone the repositorySklonuj repozytorium.

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

    Update the repository, if necessaryJeśli jest to wymagane, zaktualizuj repozytorium.

    Code Block
    cd axxonnext.docker
    hg pull -u