szaszm commented on a change in pull request #1216:
URL: https://github.com/apache/nifi-minifi-cpp/pull/1216#discussion_r767164549



##########
File path: docker/test/integration/minifi/core/OPCUAServerContainer.py
##########
@@ -0,0 +1,24 @@
+import logging
+from .Container import Container
+
+
+class OPCUAServerContainer(Container):
+    def __init__(self, name, vols, network, image_store, command=None):
+        super().__init__(name, 'opcua-server', vols, network, image_store, 
command)
+
+    def get_startup_finished_log_entry(self):
+        return "TCP network layer listening on"
+
+    def deploy(self):
+        if not self.set_deployed():
+            return
+
+        logging.info('Creating and running OPC UA server docker container...')
+        self.client.containers.run(
+            "lordgamez/open62541",

Review comment:
       Is there a problem with the [official 
image](https://hub.docker.com/r/open62541/open62541)?




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to