From 65108547d8d15d3399e40f0349e831460bf5d699 Mon Sep 17 00:00:00 2001 From: John lee Date: Tue, 27 Aug 2024 13:01:49 +0000 Subject: [PATCH] always check for new images --- osm/_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osm/_utils.py b/osm/_utils.py index aef17108..647d3d72 100644 --- a/osm/_utils.py +++ b/osm/_utils.py @@ -85,7 +85,7 @@ def compose_up(): logger.info("Waiting for containers to be ready...") print("Waiting for containers to be ready...") - docker.compose.up(detach=True, wait=True) + docker.compose.up(detach=True, wait=True, pull="always") print("Containers ready!") sleep(5)