Dijar Vrella
07/12/2024, 11:23 PMMarvin
07/12/2024, 11:23 PMpull_docker_image
or create_docker_container
.
However, in general Docker practices, you can bypass the cache by using the --no-cache
option when building an image, though this would be more relevant for the build-push phase rather than pulling or creating containers directly.
For related Docker image caching options, you might need to look at Docker's own documentation or consider handling cache invalidation via docker commands or settings outside Prefect.
For more detailed information, you can refer to Prefect’s CI/CD guide on using Docker with caching in GitHub Actions.