By searching image tag of the wirepas/gateway_transport_service it would be possible to run wirepasSinkConfigurator,service without pulling latest wirepas/gateway_transport_service docker image in case specific version of gateway docker images used .
quick-and-dirty way to find image tag and use int wirepasSinkConfigurator.service:
ExecStart=su - wirepas -c "tag=\"$(docker images | grep transport | awk '{print $2}')\" && \
docker run \
--rm \
-v wirepas_dbus-volume:/var/run/dbus \
--env-file /boot/wirepas/sink.env \
wirepas/gateway_transport_service:$tag wm-node-conf set -s sink1 -S=yes"
By searching image tag of the wirepas/gateway_transport_service it would be possible to run wirepasSinkConfigurator,service without pulling latest wirepas/gateway_transport_service docker image in case specific version of gateway docker images used .
quick-and-dirty way to find image tag and use int wirepasSinkConfigurator.service: