Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Compose file

netfield-app-opc-ua-io-link-configurator-1.2.0.yml

Startup

Code Block
docker-compose --file netfield-app-opc-ua-io-link-configurator-1.2.0.yml up -d

Shutdown

Code Block
docker-compose --file netfield-app-opc-ua-io-link-configurator-1.2.0.yml down

Prerequisites

None

UI access

Over edge device integrated web user interface

...

Compose file

netfield-app-opc-ua-io-link-configurator-1.2.0.yml

Startup

Code Block
docker-compose --file netfield-app-opc-ua-io-link-configurator-1.2.0.yml up -d

Shutdown

Code Block
docker-compose --file netfield-app-opc-ua-io-link-configurator-1.2.0.yml down

Prerequisites

None

UI access

Port 80 is not exposed in the compose file above due to security reasons. To access the web front-end there exists two ways:

  • Secure way:

  • Insecure way: For tests the port could be simply exposed using compose file with the additional lines

    Code Block
    services:
        ports:
          - 80:80

...