Dockerfile with RTI DDS

5 posts / 0 new
Last post
Offline
Last seen: 1 year 9 months ago
Joined: 12/06/2021
Posts: 17
Dockerfile with RTI DDS

Hello everyone.

Do you have a dockerfile example or docker image with rti dds install? I tried with ./rti_connext_dds-6.1.0-lm-x64Linux4gcc7.3.0.run --unattendedmodeui minimalWithDialogs, but it didn't allow me to install it without a user input. Any guidance will be really helpful.

Thanks in advance.

Emilio

Offline
Last seen: 1 month 1 week ago
Joined: 09/23/2018
Posts: 62

Try adding the --mode unattended.

Here is an example:

./rti_connext_dds-6.1.0-pro-host-x64Linux.run --mode unattended --prefix /opt/rti --unattendedmodeui none --disable_copy_examples true

 

Offline
Last seen: 1 year 9 months ago
Joined: 12/06/2021
Posts: 17

Hey Gary, thanks for the response. Where can I get the pro-host run file? I only have the lm model. And seems that the unattended mode is not available on it.

Offline
Last seen: 1 month 1 week ago
Joined: 09/23/2018
Posts: 62

Unfortunately, it looks like the License Managed packages ('lm') do not allow an unattended install.   I knew this was the case for 'eval' labeled packages but I I wasn't aware that applied to  'lm' packages also. 

Running in Unattended Mode

Parameter

Values

Meaning

Default

--mode

win32

gtk

xwindows

osxqt

text [not available on Windows]

unattended [all platforms]
[not available for "lm" package]

Should the installer display a graphical or a text-based UI? Should the installer ask for user feedback?

GUI available on your platform

Offline
Last seen: 1 year 9 months ago
Joined: 12/06/2021
Posts: 17

thanks for the confirmation.