How can I use drone rancher with force pull
You can add the pull: true variable to a step in your yaml. Prior to starting the container the system will execute docker pull to check for new updates.
pipeline:
step:
image: foo
+ pull: true
It is ok. Thanks a lot