Can Prefect use local docker images? Can Prefect u...
# prefect-community
j
Can Prefect use local docker images? Can Prefect use private docker images?
j
If you’re running in Kubernetes, then as long as the image can be pulled by Kubernetes, then it’ll work (Prefect creates a Job and then the normal Kubernetes machinery handles the rest).
👀 1
j
I am not using Kubernetes. 😛
r
For plain Docker, the answer is yes to both questions 🙂 Local images should work our of the box - you just need to supply the name and tag of the image you want to use. And there's a Docker registry block you can configure to pull images from private Docker registries.
🙏 1
j
Thank you!