container support

Hoping I could get some help with Containers…I work for a SDN company where we are looking to install our endpoint software on Mikrotik routers as a containers. We typically use a compose file that executes the following code:

docker run
–rm
–name myTunneler1
–privileged
–network host
–device “/dev/net/tun:/dev/net/tun”
–volume “${PWD}:/ziti-edge-tunnel”
–volume “/var/run/dbus/system_bus_socket:/var/run/dbus/system_bus_socket”
–env NF_REG_NAME=myTunneler1
netfoundry/ziti-edge-tunnel:latest


We need to ingest an identity key called NF_REG_NAME=myendpoint.jwt — The file can be uploaded to the router or we could potentially preregister the identity and upload the resulting myendpoint.json to be mounted in /ziti-edge-tunnel.

  1. Is only bridged network possible?
  2. Is it possible to execute the docker run command?