does drone always pull ‘newest’ image in each step or does it use the cached one on the dockerhost?
Drone does not automatically pull the newest image. If you would like to check for and pull the newest image, this can be configured in your yaml:
pipeline:
build:
image: golang
+ pull: true
1 Like
Thanks for the prompt response Brad! I know there is a lot on your plate so I tried to dig for this info in the docs. My apologies if it is there somewhere and I just didn’t see it. Key takeaway for me here is that when you said the drone DSL is a superset of docker-compose DSL, I need to really take that to heart! Is there a link akin to the docker compose file reference (https://docs.docker.com/compose/compose-file/) for the drone file that I might have missed?