Versions Compared

Key

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

...

General information about the Docker image and container


ImageContainer
DescriptionTemplate (template blank) on the basis of which containers are createdA complete software instance created on the basis of the image
Features

The image includes:

  • application code;
  • libraries and dependencies;
  • startup commands and service settings

Container features:

  • isolation from the host system and other containers;
  • the use of host machine resources (CPU, memory, network, storage);
  • can be started, stopped, removed, or restarted

Installing the Docker server

...

Code Block
languageshell
/var/lib/docker/volumes/<volume_id>

You can change the path upon request via AxxonSoft technical support specialists.
To receive the volume_id value, use the command:

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.