Does docker allow for robotic process automation?

不羁的心 提交于 2019-12-24 20:32:47

问题


Can docker containers be used along with UI based RPA tools like blueprism or uiPath? Blueprism recommends using virtual machines but offers no support of docker


回答1:


Yes it will be possible. I'm unfamiliar with the solutions you describe so I'm unable to provide you with specific examples.

Any Linux (and Windows) process can be run in a container.

Docker made containers into a thing but they're really not. They're just (very useful) conceptual "sugar" on Linux namespaces and cgroups to make the functionality more accessible. They provide a way to segregate e.g. one or more Linux processes (and their resources).

So, unless someone else has done the "containerization" already (likely), you should be able to do this reasonably easily for yourself. The primary challenge will be in relaxing the container boundary to access machine or other process resources.



来源:https://stackoverflow.com/questions/54937663/does-docker-allow-for-robotic-process-automation

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!