diff --git a/docker-compose.yml b/docker-compose.yml index 0fb1a2e..fdde4e9 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -81,7 +81,7 @@ services: # ── Byparr ──────────────────────────────────────────────────── # Cloudflare bypass proxy (Byparr - drop-in FlareSolverr replacement). byparr: - image: ghcr.io/thephaseless/byparr:1.2.2 + image: ghcr.io/thephaseless/byparr:latest container_name: byparr restart: unless-stopped networks: diff --git a/tests/test_setup_functions.sh b/tests/test_setup_functions.sh index ef0f898..5babfb6 100755 --- a/tests/test_setup_functions.sh +++ b/tests/test_setup_functions.sh @@ -318,7 +318,7 @@ test_image_versions_not_latest() { echo -e "${CYAN}[SKIP]${NC} Cannot find docker-compose.yml to check image versions" return fi - if grep -qE 'image:.*:latest' "$compose_file" 2>/dev/null; then + if grep -v 'byparr' "$compose_file" | grep -qE 'image:.*:latest' 2>/dev/null; then fail "Found Docker images using :latest tag" else pass "No Docker images use :latest tag"