If AcuThin or AcuToWeb does not work in the container:
podman ps -a podman stop container-id podman rm container-id
podman run \ -it \ --rm \ --env "PATH=/opt/microfocus/extend/bin:$PATH" \ --env "LD_LIBRARY_PATH=/opt/microfocus/extend/lib:$LD_LIBRARY_PATH" \ --publish 5632:5632 \ --publish 3000:3000 \ --publish 8008:8008 \ --name acu_app_interactive \ --volume "$PWD/SharedContainerDirectory":"/SharedContainerDirectory" \ microfocus/extend-app:ubuntu_10.5.0_x64
Where all the options shown here are similar to run_container_AcuRCL.sh and run_container_AcuToWeb.sh but without the -d and --entrypoint options and with the -it option. The -it option runs the application container interactively with a shell prompt.
username@ubuntu:~/linux$
By default, the container shell prompt takes this form:
root@container-id:/#
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 /AppContainerDirectory acurcl -start -c /AppContainerDirectory/acurcl_linux.cfg -l -t7 -f
If you have made any changes to files in AppContainerDirectory, you must create a new application image.
podman images
podman rmi image-id