Starting and stopping the Amlen WebUI process in a Docker environment

System administrators can start and stop the Amlen WebUI by using the following docker commands.

If something goes wrong with the Amlen WebUI, you might want to stop and start the Amlen WebUI process to resolve the issue.

  • To view the current status of the Amlen WebUI process, enter the following command:

    docker ps

  • To see if the Amlen WebUIcontainer exists but is not currently running, enter the following command:

    docker ps -a

  • To create the Amlen WebUI container and start it for the first time, enter the following command:

    docker run --cap-add SYS_ADMIN --net=host -P -it --name imawebui --env-file=imawebui-docker.env -m 2g -d imawebui:2.0

  • To stop an existing Amlen WebUI container that is running in a Docker environment, use the following command:
    docker stop <WebUI container name>
  • To start an existing Amlen WebUI container that is not running in a Docker environment, use the following command:
    docker start <WebUI container name>