From c5a04f78bbca1f5d81879abbc0447643d5fb5fb4 Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Sat, 4 Jun 2022 00:25:28 +0700 Subject: [PATCH] Prevent sanity pull images (#2005) Signed-off-by: Andrey Sobolev --- tests/docker-compose.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/docker-compose.yaml b/tests/docker-compose.yaml index 3e83397232..37eefabcfc 100644 --- a/tests/docker-compose.yaml +++ b/tests/docker-compose.yaml @@ -36,6 +36,7 @@ services: test: curl -s http://localhost:9200/_cluster/health | grep -vq '"status":"red"' account: image: hardcoreeng/account + pull_policy: never links: - mongodb - minio @@ -53,6 +54,7 @@ services: - MINIO_SECRET_KEY=minioadmin front: image: hardcoreeng/front + pull_policy: never links: - account - mongodb @@ -73,6 +75,7 @@ services: - MINIO_SECRET_KEY=minioadmin transactor: image: hardcoreeng/transactor + pull_policy: never links: - mongodb - elastic