Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,18 @@ ensure_docker_and_compose() {
fi
}

# --------------------------
# Pull Hummingbot Docker Image
# --------------------------
pull_hummingbot_image() {
echo "[INFO] Pulling latest Hummingbot image (hummingbot/hummingbot:latest)..."
if docker pull hummingbot/hummingbot:latest; then
echo "[OK] Hummingbot image pulled successfully."
else
echo "[WARN] Could not pull hummingbot/hummingbot:latest (network issue?). You may need to run 'docker pull hummingbot/hummingbot:latest' manually."
fi
}

# --------------------------
# Pre-flight (deps + docker)
# --------------------------
Expand All @@ -313,6 +325,11 @@ fi

echo ""

# Always pull latest Hummingbot image (first install and upgrade)
pull_hummingbot_image

echo ""

# --------------------------
# Existing .env creation flow
# --------------------------
Expand Down
Loading