https://prefect.io logo
e

Eric

09/22/2020, 9:12 PM
hi! is it possible to configure the Github storage environment to use a container on ECR?
j

Jim Crist-Harif

09/22/2020, 9:18 PM
Hi Eric, are you asking how to configure an image to use when pulling a flow from github storage?
e

Eric

09/22/2020, 9:30 PM
yes precisely
j

Jim Crist-Harif

09/22/2020, 9:32 PM
You can select an image to use by setting the
image
field in the
environment.metadata
dict.
Copy code
flow.environment.metadata["image"] = "my-awesome-image:1234"
e

Eric

09/22/2020, 9:32 PM
ah thank you.