I try to build a multicontainer based gateway app on rpi3, mqtt container is fine, the problem is with the go (flogo container) it is pushed all is ok until the log error:
23.07.18 11:08:24 (+0300) flogo Systemd init system enabled.
23.07.18 11:08:24 (+0300) flogo Couldn’t find an alternative telinit implementation to spawn.
It looks like the go container is attempting to use systemd. Whilst I’ve not seen that particular warning message before, it sounds like the issue could be that the container is not privileged. You should be able to add a line to the service definition for the go container: privileged: true
Which will then ensure that the container is able to start systemd correctly. Our base images allow the use of systemd by setting the INITSYSTEM environment variable, which also requires privileged mode. Please see here for further details if running from a resin base image.