Portainer Templates

OPC Router

Edge

No-code middleware for industrial applications. The OPC Router connects PLCs, PCS, SCADA, MES, SQL databases and servers, label printers, e-mail servers and erp-systems via OPC UA, MQTT, REST, CSV and many others without any programming effort

Type Container Platform linux Image opcrouter/runtime:latest Ports

49429/tcp8080/tcp8081/tcp

Volumes

/data/database /inray /var/log/opcrouter

Env Vars

INITIAL_USERNAME=''INITIAL_PASSWORD=''OR_I_ACCEPT_EULA=''

Installation

Via Portainer

  1. Ensure both Docker and Portainer are installed, and up-to-date
  2. Log into your Portainer web UI
  3. Under Settings → App Templates, paste the below URL
  4. Head to Home → App Templates, and the list of apps will show up
  5. Select the app you wish to deploy, fill in any config options, and hit Deploy

Template Import URL

https://raw.githubusercontent.com/Lissy93/portainer-templates/main/templates.json
Show Me demo

Via Docker Run

docker run -d \ 
  -p 49429/tcp \
  -p 8080/tcp \
  -p 8081/tcp \
  -e INITIAL_USERNAME=${INITIAL_USERNAME} \
  -e INITIAL_PASSWORD=${INITIAL_PASSWORD} \
  -e OR_I_ACCEPT_EULA=${OR_I_ACCEPT_EULA} \
  -v undefined:/data/database \
  -v undefined:/inray \
  -v undefined:/var/log/opcrouter \
  opcrouter/runtime:latest

Via Docker Compose

Save this file as docker-compose.yml and run docker-compose up -d
Use this only as a guide.

version: '3.8'
services:
  opc-router:
    image: opcrouter/runtime:latest
    ports:
      - 49429:tcp
      - 8080:tcp
      - 8081:tcp
    environment:
      INITIAL_USERNAME: ''
      INITIAL_PASSWORD: ''
      OR_I_ACCEPT_EULA: ''
    volumes:
      - ':/data/database'
      - ':/inray'
      - ':/var/log/opcrouter'

Alternative Methods

For more installation options, see the Documentation in the GitHub repo