In versions previous to 1.12 if you had a docker swarm and you ran a container on the swarm manager it would distribute the work across all the swarm nodes.
In version 1.12 if you “run” an container on the docker manager, now it only creates it on the manager and does not spread the load. The containers we are creating are single node (not scaled) short lived and run with the “–rm” flags. The new docker service does not fit this use case.
With a 1.12 swarm how do I just distribute single containers across the swam?