...
- Download the required archive with packages of the new Axxon One version from the official AxxonSoft website.
- Copy the axxon-one_%version.number%_all.deb and the axxon-one-core_%version.number%_amd64.deb packages to the /var/lib/docker/volumes/<VOLUME_ID>/_data/ directory.
Note title Attention! - If you create a container by using a script (see Working with the Axxon One container), place new packages in the directory:
Code Block language shell ~/axxonnext.docker/data
- If you build a container from the Docker image (see Installing and launching Axxon One using Docker), place packages in the directory:
Code Block language shell /var/lib/docker/volumes/<VOLUME_ID>/_data/
- If you create a container by using a script (see Working with the Axxon One container), place new packages in the directory:
- Make sure that a container is running:
Code Block language shell docker ps -a
- If necessary, run a container using the command:
Code Block language shell docker start <container_id>
- Get access to the container terminal:
After you log into the container terminal, the current default path is the directory where the .deb packages are located.Code Block language shell docker exec -it <container_id> sh
- Sequentially execute commands to install new packages:
Code Block language shell apt update apt install ./axxon-one*.deb
...