ContributionsMost RecentMost LikesSolutionsRe: Docker with ID-based Licenses Hithreehook I also used gitlab pipeline, here is my unprofessional solution for a demonstration, Re: Docker with ID-based Licenses Hithreehook My workeround was lock "/proc". Thanks to this, the application could not detect that it is running in docker. This can be done, for example, by using this command that runs before entrypoint, for example in a before script in a pipeline mount -o remount, rw, nosuid, nodev, noexec, relatime, hidepid = 2 / proc I've dealt with it this way in the past, maybe it's solved in the new version without a workeround. Re: Docker with ID-based Licenses Hi, I meant this license https://support.smartbear.com/readyapi/docs/general-info/licensing/id-based/index.html There are two types of float licenses: "file based" and "ID-based". I am currently working with "ID-based". In the latest version of docker container https: //hub.docker.com/r/smartbear/ready-api-soapui-testrunner/ which is released today ,there is a change in the EntryPoint.sh script that will allow you to work with this new license. However, the application itself in the docker continues to report the problem after launch. I did a workeround in which I forbade the application to look in the linux folder "/proc" , thanks to which the application does not know that it runs in docker and everything finally works. Docker with ID-based Licenses Hello, Is it possible to run readyapi functional tests using the headless Readyapi runner in Docker ? I tried to create a new docker image, but it recognized the test runner run in the container and tried to apply the old type of license. Solved