Versions Compared

Key

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

...

  1. Install Docker using the official guides:
  2. Open the link to select the required Axxon One Docker image.

  3. Next to the required Docker image, click the button to copy the command.
    Image RemovedExample of the command:

    Code Block
    languagebash
    docker pull axxonsoft/axxon-one:2.0.0.188
  4. Paste the copied command into the terminal and execute it.

  5. Launch Docker using the following command:

    Code Block
    docker run <image version>

    For example:

    Code Block
    docker run axxonsoft/axxon-one:2.0.0.188


  6. Enter the required IP address, login and password to launch the Axxon One Client (when launching Axxon One for the first time, enter the following login and password: root/root).
    Info
    titleNote
    • To determine the IP address to connect to, execute the following command:
      Code Block
      docker inspect <container id> | grep "IPAddress"

      To determine the <container id>, execute the following command:
      Code Block
      docker ps

      or
      Code Block
      docker container ls


    • To check the availability of the Server, execute the following command:
      Code Block
      ping <ip address>
    • To view the running processes, execute the following command:
      Code Block
      docker top <container name>

...