Pradumna Saraf
banner
pradumnasaraf.dev
Pradumna Saraf
@pradumnasaraf.dev
Open Source Developer | Docker Captain | Microsoft MVP | DevOps | Owner @rebasemedia

All my links: https://links.pradumnasaraf.dev
Thank you very much, Eva and the whole team at @docker.com, for the award and for recognising my contribution.
November 18, 2025 at 4:42 AM
Also funny thing, I never won any award during my studies or academics. I was telling this to my mother, and she said the current ones are way more important and precious :)

Thank you very much, Eva and the whole team at Docker, for the award and for recognising my contribution.
November 18, 2025 at 4:16 AM
Also… I won something. Stay tuned for the next post!
November 5, 2025 at 6:00 AM
- every_: Pull if last update was older than a specific time (e.g. every_30m, every_2h)

For example, when I want to test the latest version of an image, I use pull_policy: always. This way, every time I run docker compose up, Docker, Inc., fetches the newest image.

(3/3)
September 5, 2025 at 4:26 AM
- never: Never pull, only use what’s local (fails if not found)
- missing (default)/if_not_present: Pull only if the image isn’t on your machine
- build: Build the image, even if one is already there
- daily / weekly: Pull if the last update was more than 1 day or 7 days.

(2/3)
September 5, 2025 at 4:26 AM