Versions Compared

Key

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

...

Code Block
languageshell
docker inspect <container_id>

Collecting the support package in the Docker container

To collect the support package, do the following:

  1. First, find out the ID of the Docker container using the command:
    Code Block
    languageshell
    docker ps -a
  2. Get access to the container terminal (container must be running):
    Code Block
    languageshell
    docker exec -it <container_id> sh
    where <container_id> is the Docker container ID.
  3. Go to the Axxon One bin directory:
    Code Block
    languageshell
    cd /opt/AxxonSoft/AxxonOne/bin
  4. Run the command:
    Code Block
    languageshell
    ./start_app support /data
    This initiates the process of creating the support package, which will be saved in the data directory.
  5. Exit the terminal using the command:
    Code Block
    languageshell
    exit
  6. Go to the /var/lib/docker/volumes/<volume_id>/data directory, which is configured for file exchange between the container and the host. The completed support package will be located in this directory.

Collecting the support package in the Docker container is complete.