From 7ff5efb463dffd581a8b6267d05fa490f33b4d67 Mon Sep 17 00:00:00 2001 From: Supan Adit Pratama Date: Tue, 24 Jun 2025 16:16:18 +0700 Subject: [PATCH] feat: add opentelemetry collector image pull to script --- scripts/pulling.ps1 | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/pulling.ps1 b/scripts/pulling.ps1 index 7d61398..dff979e 100644 --- a/scripts/pulling.ps1 +++ b/scripts/pulling.ps1 @@ -47,6 +47,11 @@ Set-Location "$curDir/docker/traefik" # Pull the latest image from Docker Hub docker compose pull +# Go To $curDir/docker/opentelemetry/collector +Set-Location "$curDir/docker/opentelemetry/collector" +# Pull the latest image from Docker Hub +docker compose pull + # Back to the original directory Set-Location $curDir Write-Host "All Docker images have been pulled successfully." \ No newline at end of file