If AcuThin or AcuToWeb does not work in the container:
docker ps -a docker stop container-id docker rm container-id
docker run
-it
--rm
--publish 5632:5632
--publish 3000:3000
--publish 8009:8009
--name acu_app_interactive
--volume "%CD%\SharedContainerDirectory":"C:\SharedContainerDirectory"
microfocus/extend-app:win_10.5.0_x64
Where all the options shown here are similar to run_container_AcuRCL.bat and run_container_AcuToWeb.bat but without the -d and --entrypoint options and with the addition of the -it option. The -it option runs the application container interactively with a command prompt.
For example, for AcuRCL, change to AppContainerDirectory, and start AcuRCL in the foreground without an error file so you can see all the output:
cd C:\AppContainerDirectory acurcl -start -c C:\AppContainerDirectory\acurcl_windows.cfg -l -t7 -f
If you have made any changes to files in AppContainerDirectory, you must create a new application image.
docker images
docker rmi image-id