We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bb6e938 + 8a6c61e commit 4c34cfaCopy full SHA for 4c34cfa
1 file changed
src/vibepod/commands/run.py
@@ -271,9 +271,10 @@ def run(
271
extra_network = network or _maybe_select_network(workspace_path, manager, network_name)
272
273
agent_auto_pull = agent_cfg.get("auto_pull")
274
- should_pull = pull or (
+ auto_pull_enabled = (
275
agent_auto_pull if agent_auto_pull is not None else bool(config.get("auto_pull", False))
276
)
277
+ should_pull = pull or (auto_pull_enabled and _is_latest_tag(image))
278
if should_pull:
279
info(f"Pulling image: {image}")
280
manager.pull_image(image)
0 commit comments