From the uDemy course on LLM engineering.
https://www.udemy.com/course/llm-engineering-master-ai-and-large-language-models
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1171 lines
110 KiB
1171 lines
110 KiB
{ |
|
"cells": [ |
|
{ |
|
"cell_type": "markdown", |
|
"id": "d15d8294-3328-4e07-ad16-8a03e9bbfdb9", |
|
"metadata": {}, |
|
"source": [ |
|
"# Welcome to your first assignment!\n", |
|
"\n", |
|
"Instructions are below. Please give this a try, and look in the solutions folder if you get stuck (or feel free to ask me!)" |
|
] |
|
}, |
|
{ |
|
"cell_type": "markdown", |
|
"id": "ada885d9-4d42-4d9b-97f0-74fbbbfe93a9", |
|
"metadata": {}, |
|
"source": [ |
|
"<table style=\"margin: 0; text-align: left;\">\n", |
|
" <tr>\n", |
|
" <td style=\"width: 150px; height: 150px; vertical-align: middle;\">\n", |
|
" <img src=\"../resources.jpg\" width=\"150\" height=\"150\" style=\"display: block;\" />\n", |
|
" </td>\n", |
|
" <td>\n", |
|
" <h2 style=\"color:#f71;\">Just before we get to the assignment --</h2>\n", |
|
" <span style=\"color:#f71;\">I thought I'd take a second to point you at this page of useful resources for the course. This includes links to all the slides.<br/>\n", |
|
" <a href=\"https://edwarddonner.com/2024/11/13/llm-engineering-resources/\">https://edwarddonner.com/2024/11/13/llm-engineering-resources/</a><br/>\n", |
|
" Please keep this bookmarked, and I'll continue to add more useful links there over time.\n", |
|
" </span>\n", |
|
" </td>\n", |
|
" </tr>\n", |
|
"</table>" |
|
] |
|
}, |
|
{ |
|
"cell_type": "markdown", |
|
"id": "6e9fa1fc-eac5-4d1d-9be4-541b3f2b3458", |
|
"metadata": {}, |
|
"source": [ |
|
"# HOMEWORK EXERCISE ASSIGNMENT\n", |
|
"\n", |
|
"Upgrade the day 1 project to summarize a webpage to use an Open Source model running locally via Ollama rather than OpenAI\n", |
|
"\n", |
|
"You'll be able to use this technique for all subsequent projects if you'd prefer not to use paid APIs.\n", |
|
"\n", |
|
"**Benefits:**\n", |
|
"1. No API charges - open-source\n", |
|
"2. Data doesn't leave your box\n", |
|
"\n", |
|
"**Disadvantages:**\n", |
|
"1. Significantly less power than Frontier Model\n", |
|
"\n", |
|
"## Recap on installation of Ollama\n", |
|
"\n", |
|
"Simply visit [ollama.com](https://ollama.com) and install!\n", |
|
"\n", |
|
"Once complete, the ollama server should already be running locally. \n", |
|
"If you visit: \n", |
|
"[http://localhost:11434/](http://localhost:11434/)\n", |
|
"\n", |
|
"You should see the message `Ollama is running`. \n", |
|
"\n", |
|
"If not, bring up a new Terminal (Mac) or Powershell (Windows) and enter `ollama serve` \n", |
|
"And in another Terminal (Mac) or Powershell (Windows), enter `ollama pull llama3.2` \n", |
|
"Then try [http://localhost:11434/](http://localhost:11434/) again.\n", |
|
"\n", |
|
"If Ollama is slow on your machine, try using `llama3.2:1b` as an alternative. Run `ollama pull llama3.2:1b` from a Terminal or Powershell, and change the code below from `MODEL = \"llama3.2\"` to `MODEL = \"llama3.2:1b\"`" |
|
] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": 1, |
|
"id": "4e2a9393-7767-488e-a8bf-27c12dca35bd", |
|
"metadata": {}, |
|
"outputs": [], |
|
"source": [ |
|
"# imports\n", |
|
"\n", |
|
"import requests\n", |
|
"from bs4 import BeautifulSoup\n", |
|
"from IPython.display import Markdown, display" |
|
] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": 2, |
|
"id": "29ddd15d-a3c5-4f4e-a678-873f56162724", |
|
"metadata": {}, |
|
"outputs": [], |
|
"source": [ |
|
"# Constants\n", |
|
"\n", |
|
"OLLAMA_API = \"http://localhost:11434/api/chat\"\n", |
|
"HEADERS = {\"Content-Type\": \"application/json\"}\n", |
|
"MODEL = \"llama3.2\"" |
|
] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": 3, |
|
"id": "dac0a679-599c-441f-9bf2-ddc73d35b940", |
|
"metadata": {}, |
|
"outputs": [], |
|
"source": [ |
|
"# Create a messages list using the same format that we used for OpenAI\n", |
|
"\n", |
|
"messages = [\n", |
|
" {\"role\": \"user\", \"content\": \"Describe some of the business applications of Generative AI\"}\n", |
|
"]" |
|
] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": 4, |
|
"id": "7bb9c624-14f0-4945-a719-8ddb64f66f47", |
|
"metadata": {}, |
|
"outputs": [], |
|
"source": [ |
|
"payload = {\n", |
|
" \"model\": MODEL,\n", |
|
" \"messages\": messages,\n", |
|
" \"stream\": False\n", |
|
" }" |
|
] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": 21, |
|
"id": "479ff514-e8bd-4985-a572-2ea28bb4fa40", |
|
"metadata": {}, |
|
"outputs": [ |
|
{ |
|
"name": "stdout", |
|
"output_type": "stream", |
|
"text": [ |
|
"\u001b[?25lpulling manifest ⠋ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠙ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠹ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠸ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠼ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠴ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest \n", |
|
"pulling dde5aa3fc5ff... 100% ▕████████████████▏ 2.0 GB \n", |
|
"pulling 966de95ca8a6... 100% ▕████████████████▏ 1.4 KB \n", |
|
"pulling fcc5a6bec9da... 100% ▕████████████████▏ 7.7 KB \n", |
|
"pulling a70ff7e570d9... 100% ▕████████████████▏ 6.0 KB \n", |
|
"pulling 56bb8bd477a5... 100% ▕████████████████▏ 96 B \n", |
|
"pulling 34bb5ab01051... 100% ▕████████████████▏ 561 B \n", |
|
"verifying sha256 digest \n", |
|
"writing manifest \n", |
|
"success \u001b[?25h\n" |
|
] |
|
} |
|
], |
|
"source": [ |
|
"# Let's just make sure the model is loaded\n", |
|
"\n", |
|
"!ollama pull llama3.2\n" |
|
] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": 6, |
|
"id": "42b9f644-522d-4e05-a691-56e7658c0ea9", |
|
"metadata": {}, |
|
"outputs": [ |
|
{ |
|
"name": "stdout", |
|
"output_type": "stream", |
|
"text": [ |
|
"Generative AI has numerous business applications across various industries. Here are some examples:\n", |
|
"\n", |
|
"1. **Content Generation**: Generative AI can be used to generate high-quality content such as articles, blog posts, social media posts, and even entire books. This can help businesses save time and resources on content creation.\n", |
|
"2. **Product Design and Development**: Generative AI can aid in product design by generating 3D models, prototypes, and even entire product lines. This can speed up the design process and reduce costs associated with prototyping and testing.\n", |
|
"3. **Marketing and Advertising**: Generative AI can be used to create personalized ads, generate social media posts, and even compose sales emails. This can help businesses personalize their marketing efforts and improve engagement rates.\n", |
|
"4. **Customer Service**: Generative AI-powered chatbots can provide 24/7 customer support, answering common queries and routing complex issues to human agents. This can help reduce response times and improve customer satisfaction.\n", |
|
"5. **Data Analysis and Insights**: Generative AI can be used to analyze large datasets, identify patterns, and generate insights that can inform business decisions.\n", |
|
"6. **Financial Modeling**: Generative AI can aid in financial modeling by generating scenarios, forecasting revenue, and identifying potential risks.\n", |
|
"7. **Human Resources**: Generative AI can be used to screen resumes, generate interview questions, and even create personalized onboarding experiences for new employees.\n", |
|
"8. **Supply Chain Optimization**: Generative AI can help optimize supply chain operations by predicting demand, identifying bottlenecks, and recommending logistics improvements.\n", |
|
"9. **Cybersecurity**: Generative AI-powered tools can analyze vast amounts of data to detect and respond to cybersecurity threats in real-time.\n", |
|
"10. **Creative Industries**: Generative AI is being explored in creative industries such as music, art, and fashion, where it can aid in the creation of new content and even generate original ideas.\n", |
|
"\n", |
|
"Some examples of companies that are already leveraging generative AI include:\n", |
|
"\n", |
|
"* **Microsoft**: Using generative AI to create personalized content for its customers.\n", |
|
"* **Amazon**: Utilizing generative AI-powered chatbots to enhance customer service.\n", |
|
"* **Uber**: Using generative AI to optimize its logistics operations and improve ride times.\n", |
|
"* **Google**: Exploring the use of generative AI in areas such as image recognition and natural language processing.\n", |
|
"\n", |
|
"These are just a few examples of the many business applications of generative AI. As the technology continues to evolve, we can expect to see even more innovative uses across various industries.\n" |
|
] |
|
} |
|
], |
|
"source": [ |
|
"# If this doesn't work for any reason, try the 2 versions in the following cells\n", |
|
"# And double check the instructions in the 'Recap on installation of Ollama' at the top of this lab\n", |
|
"# And if none of that works - contact me!\n", |
|
"\n", |
|
"response = requests.post(OLLAMA_API, json=payload, headers=HEADERS)\n", |
|
"print(response.json()['message']['content'])\n" |
|
] |
|
}, |
|
{ |
|
"cell_type": "markdown", |
|
"id": "6a021f13-d6a1-4b96-8e18-4eae49d876fe", |
|
"metadata": {}, |
|
"source": [ |
|
"# Introducing the ollama package\n", |
|
"\n", |
|
"And now we'll do the same thing, but using the elegant ollama python package instead of a direct HTTP call.\n", |
|
"\n", |
|
"Under the hood, it's making the same call as above to the ollama server running at localhost:11434" |
|
] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": 7, |
|
"id": "7745b9c4-57dc-4867-9180-61fa5db55eb8", |
|
"metadata": {}, |
|
"outputs": [ |
|
{ |
|
"name": "stdout", |
|
"output_type": "stream", |
|
"text": [ |
|
"Generative AI has numerous business applications across various industries. Here are some examples:\n", |
|
"\n", |
|
"1. **Content Creation**: Generative AI can be used to generate high-quality content such as articles, social media posts, product descriptions, and more. This can help reduce content creation costs and increase efficiency.\n", |
|
"2. **Image and Video Generation**: Generative AI can create realistic images and videos that can be used for advertising, marketing, and entertainment purposes.\n", |
|
"3. **Chatbots and Virtual Assistants**: Generative AI can power chatbots and virtual assistants to provide personalized customer support and improve user experience.\n", |
|
"4. **Predictive Maintenance**: Generative AI can analyze sensor data from machines and predict potential maintenance needs, reducing downtime and increasing efficiency.\n", |
|
"5. **Personalized Recommendations**: Generative AI can be used to generate personalized product recommendations for e-commerce websites and streaming services.\n", |
|
"6. **Design and Prototyping**: Generative AI can assist in design and prototyping by generating new ideas, shapes, and designs that can save time and resources.\n", |
|
"7. **Marketing Automation**: Generative AI can automate marketing tasks such as lead generation, email writing, and ad creation.\n", |
|
"8. **Risk Assessment and Insurance**: Generative AI can analyze data to identify potential risks and provide personalized insurance quotes.\n", |
|
"9. **Supply Chain Optimization**: Generative AI can optimize supply chain operations by predicting demand, managing inventory, and identifying bottlenecks.\n", |
|
"10. **Financial Analysis and Forecasting**: Generative AI can analyze financial data to predict market trends, identify investment opportunities, and provide personalized financial advice.\n", |
|
"11. **Language Translation**: Generative AI can improve language translation accuracy and speed by generating high-quality translations.\n", |
|
"12. **Data Visualization**: Generative AI can create interactive visualizations of complex data sets, making it easier for analysts and stakeholders to understand insights.\n", |
|
"13. **Customer Service Analytics**: Generative AI can analyze customer service data to identify trends, preferences, and pain points, helping companies improve their customer experience.\n", |
|
"14. **Cybersecurity**: Generative AI can be used to detect and respond to cybersecurity threats by generating alerts, predicting attacks, and suggesting countermeasures.\n", |
|
"15. **Urban Planning and Development**: Generative AI can help urban planners design sustainable cities by generating new ideas for transportation systems, public spaces, and building designs.\n", |
|
"\n", |
|
"These are just a few examples of the many business applications of Generative AI. As the technology continues to evolve, we can expect to see even more innovative uses across various industries.\n" |
|
] |
|
} |
|
], |
|
"source": [ |
|
"import ollama\n", |
|
"\n", |
|
"response = ollama.chat(model=MODEL, messages=messages)\n", |
|
"print(response['message']['content'])" |
|
] |
|
}, |
|
{ |
|
"cell_type": "markdown", |
|
"id": "a4704e10-f5fb-4c15-a935-f046c06fb13d", |
|
"metadata": {}, |
|
"source": [ |
|
"## Alternative approach - using OpenAI python library to connect to Ollama" |
|
] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": 8, |
|
"id": "23057e00-b6fc-4678-93a9-6b31cb704bff", |
|
"metadata": {}, |
|
"outputs": [ |
|
{ |
|
"name": "stdout", |
|
"output_type": "stream", |
|
"text": [ |
|
"Generative AI has numerous business applications across various industries. Here are some examples:\n", |
|
"\n", |
|
"1. **Content Generation**: Generative AI can be used to automate content creation, such as writing articles, creating social media posts, and producing videos. This can help businesses save time and resources, while also improving the consistency and quality of their content.\n", |
|
"2. **Product Design and Development**: Generative AI can be used to design new products or features, such as 3D models, product images, and even entire product lines. This can help businesses speed up their product development process and reduce costs.\n", |
|
"3. **Marketing and Advertising**: Generative AI can be used to generate targeted advertising campaigns, personalized product recommendations, and social media posts that resonate with specific audiences. For example, it can analyze customer data and create customized messages that are more likely to engage users.\n", |
|
"4. **Customer Service Chatbots**: Generative AI-powered chatbots can be used to automate customer support, providing quick responses to common queries and routing more complex issues to human agents.\n", |
|
"5. **Data Analysis and Visualization**: Generative AI can be used to analyze large datasets, identify patterns, and create visualizations that help businesses make data-driven decisions. For example, it can be used to generate heat maps of website traffic or create predictive models for sales forecasting.\n", |
|
"6. **Automated Reporting and Dashboards**: Generative AI can be used to automate the creation of reports and dashboards, providing real-time insights into business performance and helping businesses identify areas for improvement.\n", |
|
"7. **Sales Forecasting and Predictive Analytics**: Generative AI can be used to analyze historical sales data and make predictions about future sales trends, helping businesses anticipate revenue shortfalls or opportunities.\n", |
|
"8. **Personalized Recommendations**: Generative AI can be used to generate personalized product recommendations based on customer behavior, preferences, and past purchases.\n", |
|
"9. **Image and Video Generation**: Generative AI can be used to create high-quality images and videos, such as product images, lifestyle shots, or even entire advertising campaigns.\n", |
|
"10. **Supply Chain Optimization**: Generative AI can be used to optimize supply chain operations, predicting demand, managing inventory, and streamlining logistics.\n", |
|
"\n", |
|
"Some notable businesses that are leveraging Generative AI include:\n", |
|
"\n", |
|
"* Google (Content Generation, Chatbots)\n", |
|
"* Amazon (Product Design, Marketing and Advertising)\n", |
|
"* Shopify (Personalized Recommendations, Product Design)\n", |
|
"* IBM Watson (Data Analysis, Predictive Analytics)\n", |
|
"* Coca-Cola (Marketing and Advertising, Supply Chain Optimization)\n", |
|
"\n", |
|
"Keep in mind that the applications of Generative AI are vast and constantly evolving, and many companies are finding new innovative ways to use these technologies to drive business growth.\n" |
|
] |
|
} |
|
], |
|
"source": [ |
|
"# There's actually an alternative approach that some people might prefer\n", |
|
"# You can use the OpenAI client python library to call Ollama:\n", |
|
"\n", |
|
"from openai import OpenAI\n", |
|
"ollama_via_openai = OpenAI(base_url='http://localhost:11434/v1', api_key='ollama')\n", |
|
"\n", |
|
"response = ollama_via_openai.chat.completions.create(\n", |
|
" model=MODEL,\n", |
|
" messages=messages\n", |
|
")\n", |
|
"\n", |
|
"print(response.choices[0].message.content)" |
|
] |
|
}, |
|
{ |
|
"cell_type": "markdown", |
|
"id": "bc7d1de3-e2ac-46ff-a302-3b4ba38c4c90", |
|
"metadata": {}, |
|
"source": [ |
|
"## Also trying the amazing reasoning model DeepSeek\n", |
|
"\n", |
|
"Here we use the version of DeepSeek-reasoner that's been distilled to 1.5B. \n", |
|
"This is actually a 1.5B variant of Qwen that has been fine-tuned using synethic data generated by Deepseek R1.\n", |
|
"\n", |
|
"Other sizes of DeepSeek are [here](https://ollama.com/library/deepseek-r1) all the way up to the full 671B parameter version, which would use up 404GB of your drive and is far too large for most!" |
|
] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": 9, |
|
"id": "cf9eb44e-fe5b-47aa-b719-0bb63669ab3d", |
|
"metadata": {}, |
|
"outputs": [ |
|
{ |
|
"name": "stdout", |
|
"output_type": "stream", |
|
"text": [ |
|
"\u001b[?25lpulling manifest ⠋ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠙ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠹ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠸ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠼ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠴ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠦ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 0 B/1.1 GB \u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 0 B/1.1 GB \u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 0 B/1.1 GB \u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 194 KB/1.1 GB \u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 2.9 MB/1.1 GB \u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 6.2 MB/1.1 GB \u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 7.7 MB/1.1 GB \u001b[?25h\n", |
|
"pulling aabd4debf0c8... 1% ▕ ▏ 11 MB/1.1 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 13 MB/1.1 GB \u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 19 MB/1.1 GB \u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 24 MB/1.1 GB 20 MB/s 53s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 26 MB/1.1 GB 20 MB/s 53s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 32 MB/1.1 GB 20 MB/s 53s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 36 MB/1.1 GB 20 MB/s 53s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 38 MB/1.1 GB 20 MB/s 53s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 43 MB/1.1 GB 20 MB/s 52s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 49 MB/1.1 GB 20 MB/s 52s\u001b[?25h\n", |
|
"pulling aabd4debf0c8... 5% ▕ ▏ 52 MB/1.1 GB 20 MB/s 52s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 56 MB/1.1 GB 20 MB/s 52s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 62 MB/1.1 GB 20 MB/s 51s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 64 MB/1.1 GB 32 MB/s 32s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 70 MB/1.1 GB 32 MB/s 32s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 73 MB/1.1 GB 32 MB/s 32s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 80 MB/1.1 GB 32 MB/s 32s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 84 MB/1.1 GB 32 MB/s 32s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 88 MB/1.1 GB 32 MB/s 32s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 93 MB/1.1 GB 32 MB/s 31s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 95 MB/1.1 GB 32 MB/s 31s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 100 MB/1.1 GB 32 MB/s 31s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 106 MB/1.1 GB 32 MB/s 31s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 108 MB/1.1 GB 36 MB/s 27s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 113 MB/1.1 GB 36 MB/s 27s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 115 MB/1.1 GB 36 MB/s 27s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 120 MB/1.1 GB 36 MB/s 27s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 124 MB/1.1 GB 36 MB/s 27s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 126 MB/1.1 GB 36 MB/s 27s\u001b[?25h\n", |
|
"pulling aabd4debf0c8... 12% ▕█ ▏ 130 MB/1.1 GB 36 MB/s 27s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 135 MB/1.1 GB 36 MB/s 27s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 137 MB/1.1 GB 36 MB/s 27s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 141 MB/1.1 GB 36 MB/s 26s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 144 MB/1.1 GB 36 MB/s 26s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 145 MB/1.1 GB 36 MB/s 26s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 149 MB/1.1 GB 36 MB/s 26s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 154 MB/1.1 GB 36 MB/s 26s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 156 MB/1.1 GB 36 MB/s 26s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 157 MB/1.1 GB 36 MB/s 26s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 162 MB/1.1 GB 36 MB/s 26s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 167 MB/1.1 GB 36 MB/s 26s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 169 MB/1.1 GB 36 MB/s 26s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 174 MB/1.1 GB 36 MB/s 26s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 177 MB/1.1 GB 36 MB/s 26s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 182 MB/1.1 GB 35 MB/s 26s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 187 MB/1.1 GB 35 MB/s 25s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 189 MB/1.1 GB 35 MB/s 25s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 194 MB/1.1 GB 35 MB/s 25s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 199 MB/1.1 GB 35 MB/s 25s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 204 MB/1.1 GB 35 MB/s 25s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 206 MB/1.1 GB 35 MB/s 25s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 210 MB/1.1 GB 35 MB/s 25s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 212 MB/1.1 GB 35 MB/s 25s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 217 MB/1.1 GB 35 MB/s 25s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 222 MB/1.1 GB 36 MB/s 24s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 225 MB/1.1 GB 36 MB/s 24s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 231 MB/1.1 GB 36 MB/s 24s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 236 MB/1.1 GB 36 MB/s 24s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 237 MB/1.1 GB 36 MB/s 23s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 237 MB/1.1 GB 36 MB/s 23s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 237 MB/1.1 GB 36 MB/s 23s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 237 MB/1.1 GB 36 MB/s 23s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 239 MB/1.1 GB 36 MB/s 23s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 246 MB/1.1 GB 36 MB/s 23s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 247 MB/1.1 GB 35 MB/s 24s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 252 MB/1.1 GB 35 MB/s 24s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 257 MB/1.1 GB 35 MB/s 24s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 259 MB/1.1 GB 35 MB/s 24s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 264 MB/1.1 GB 35 MB/s 24s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 267 MB/1.1 GB 35 MB/s 24s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 269 MB/1.1 GB 35 MB/s 23s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 275 MB/1.1 GB 35 MB/s 23s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 279 MB/1.1 GB 35 MB/s 23s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 281 MB/1.1 GB 35 MB/s 23s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 284 MB/1.1 GB 35 MB/s 23s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 287 MB/1.1 GB 35 MB/s 23s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 289 MB/1.1 GB 35 MB/s 23s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 294 MB/1.1 GB 35 MB/s 23s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 300 MB/1.1 GB 35 MB/s 22s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 302 MB/1.1 GB 35 MB/s 22s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 307 MB/1.1 GB 35 MB/s 22s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 311 MB/1.1 GB 35 MB/s 22s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 313 MB/1.1 GB 35 MB/s 22s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 319 MB/1.1 GB 35 MB/s 22s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 323 MB/1.1 GB 35 MB/s 22s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 325 MB/1.1 GB 35 MB/s 22s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 330 MB/1.1 GB 35 MB/s 21s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 334 MB/1.1 GB 35 MB/s 21s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 338 MB/1.1 GB 35 MB/s 21s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 340 MB/1.1 GB 35 MB/s 21s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 344 MB/1.1 GB 35 MB/s 21s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 346 MB/1.1 GB 35 MB/s 21s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 350 MB/1.1 GB 35 MB/s 21s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 354 MB/1.1 GB 35 MB/s 21s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 355 MB/1.1 GB 35 MB/s 21s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 359 MB/1.1 GB 37 MB/s 20s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 362 MB/1.1 GB 37 MB/s 20s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 365 MB/1.1 GB 37 MB/s 20s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 369 MB/1.1 GB 37 MB/s 19s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 373 MB/1.1 GB 37 MB/s 19s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 375 MB/1.1 GB 37 MB/s 19s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 380 MB/1.1 GB 37 MB/s 19s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 384 MB/1.1 GB 37 MB/s 19s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 387 MB/1.1 GB 37 MB/s 19s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 391 MB/1.1 GB 37 MB/s 19s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 395 MB/1.1 GB 36 MB/s 19s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 398 MB/1.1 GB 36 MB/s 19s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 400 MB/1.1 GB 36 MB/s 19s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 403 MB/1.1 GB 36 MB/s 19s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 405 MB/1.1 GB 36 MB/s 19s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 409 MB/1.1 GB 36 MB/s 19s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 413 MB/1.1 GB 36 MB/s 19s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 418 MB/1.1 GB 36 MB/s 19s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 421 MB/1.1 GB 36 MB/s 19s\u001b[?25h\n", |
|
"pulling aabd4debf0c8... 38% ▕██████ ▏ 424 MB/1.1 GB 36 MB/s 18s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 425 MB/1.1 GB 35 MB/s 19s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 427 MB/1.1 GB 35 MB/s 19s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 431 MB/1.1 GB 35 MB/s 19s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 433 MB/1.1 GB 35 MB/s 19s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 437 MB/1.1 GB 35 MB/s 19s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 441 MB/1.1 GB 35 MB/s 19s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 444 MB/1.1 GB 35 MB/s 19s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 446 MB/1.1 GB 35 MB/s 19s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 451 MB/1.1 GB 35 MB/s 18s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 453 MB/1.1 GB 35 MB/s 18s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 456 MB/1.1 GB 34 MB/s 19s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 460 MB/1.1 GB 34 MB/s 18s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 461 MB/1.1 GB 34 MB/s 18s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 464 MB/1.1 GB 34 MB/s 18s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 467 MB/1.1 GB 34 MB/s 18s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 469 MB/1.1 GB 34 MB/s 18s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 473 MB/1.1 GB 34 MB/s 18s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 477 MB/1.1 GB 34 MB/s 18s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 482 MB/1.1 GB 34 MB/s 18s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 483 MB/1.1 GB 34 MB/s 18s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 487 MB/1.1 GB 34 MB/s 18s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 489 MB/1.1 GB 34 MB/s 18s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 492 MB/1.1 GB 34 MB/s 18s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 497 MB/1.1 GB 34 MB/s 18s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 499 MB/1.1 GB 34 MB/s 18s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 503 MB/1.1 GB 34 MB/s 17s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 507 MB/1.1 GB 34 MB/s 17s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 510 MB/1.1 GB 34 MB/s 17s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 515 MB/1.1 GB 34 MB/s 17s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 519 MB/1.1 GB 34 MB/s 17s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 521 MB/1.1 GB 34 MB/s 17s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 526 MB/1.1 GB 33 MB/s 17s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 530 MB/1.1 GB 33 MB/s 17s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 532 MB/1.1 GB 33 MB/s 17s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 536 MB/1.1 GB 33 MB/s 17s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 542 MB/1.1 GB 33 MB/s 17s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 546 MB/1.1 GB 33 MB/s 16s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 548 MB/1.1 GB 33 MB/s 16s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 552 MB/1.1 GB 33 MB/s 16s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 556 MB/1.1 GB 33 MB/s 16s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 559 MB/1.1 GB 33 MB/s 16s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 563 MB/1.1 GB 34 MB/s 15s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 568 MB/1.1 GB 34 MB/s 15s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 569 MB/1.1 GB 34 MB/s 15s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 573 MB/1.1 GB 34 MB/s 15s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 575 MB/1.1 GB 34 MB/s 15s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 581 MB/1.1 GB 34 MB/s 15s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 585 MB/1.1 GB 34 MB/s 15s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 587 MB/1.1 GB 34 MB/s 15s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 589 MB/1.1 GB 34 MB/s 15s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 593 MB/1.1 GB 34 MB/s 15s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 595 MB/1.1 GB 34 MB/s 15s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 600 MB/1.1 GB 34 MB/s 14s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 602 MB/1.1 GB 34 MB/s 14s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 606 MB/1.1 GB 34 MB/s 14s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 608 MB/1.1 GB 34 MB/s 14s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 612 MB/1.1 GB 34 MB/s 14s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 614 MB/1.1 GB 34 MB/s 14s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 619 MB/1.1 GB 34 MB/s 14s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 624 MB/1.1 GB 34 MB/s 14s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 625 MB/1.1 GB 34 MB/s 14s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 629 MB/1.1 GB 34 MB/s 14s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 634 MB/1.1 GB 34 MB/s 14s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 635 MB/1.1 GB 34 MB/s 14s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 639 MB/1.1 GB 34 MB/s 14s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 644 MB/1.1 GB 34 MB/s 13s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 645 MB/1.1 GB 34 MB/s 13s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 648 MB/1.1 GB 34 MB/s 13s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 651 MB/1.1 GB 34 MB/s 13s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 653 MB/1.1 GB 34 MB/s 13s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 656 MB/1.1 GB 34 MB/s 13s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 660 MB/1.1 GB 33 MB/s 13s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 662 MB/1.1 GB 33 MB/s 13s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 665 MB/1.1 GB 33 MB/s 13s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 669 MB/1.1 GB 33 MB/s 13s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 671 MB/1.1 GB 33 MB/s 13s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 676 MB/1.1 GB 33 MB/s 13s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 681 MB/1.1 GB 33 MB/s 12s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 683 MB/1.1 GB 33 MB/s 12s\u001b[?25h\n", |
|
"pulling aabd4debf0c8... 62% ▕█████████ ▏ 687 MB/1.1 GB 33 MB/s 12s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 690 MB/1.1 GB 33 MB/s 12s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 691 MB/1.1 GB 33 MB/s 12s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 694 MB/1.1 GB 33 MB/s 12s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 698 MB/1.1 GB 33 MB/s 12s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 701 MB/1.1 GB 33 MB/s 12s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 706 MB/1.1 GB 33 MB/s 12s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 710 MB/1.1 GB 33 MB/s 12s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 715 MB/1.1 GB 33 MB/s 12s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 718 MB/1.1 GB 33 MB/s 11s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 722 MB/1.1 GB 33 MB/s 11s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 724 MB/1.1 GB 33 MB/s 11s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 728 MB/1.1 GB 33 MB/s 11s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 733 MB/1.1 GB 33 MB/s 11s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 736 MB/1.1 GB 33 MB/s 11s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 740 MB/1.1 GB 33 MB/s 11s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 745 MB/1.1 GB 33 MB/s 10s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 749 MB/1.1 GB 33 MB/s 10s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 752 MB/1.1 GB 33 MB/s 10s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 757 MB/1.1 GB 33 MB/s 10s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 759 MB/1.1 GB 33 MB/s 10s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 764 MB/1.1 GB 33 MB/s 10s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 768 MB/1.1 GB 33 MB/s 10s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 771 MB/1.1 GB 35 MB/s 9s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 775 MB/1.1 GB 35 MB/s 9s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 780 MB/1.1 GB 35 MB/s 9s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 783 MB/1.1 GB 35 MB/s 9s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 786 MB/1.1 GB 35 MB/s 9s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 791 MB/1.1 GB 35 MB/s 9s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 796 MB/1.1 GB 35 MB/s 9s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 799 MB/1.1 GB 35 MB/s 9s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 803 MB/1.1 GB 35 MB/s 8s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 805 MB/1.1 GB 35 MB/s 8s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 809 MB/1.1 GB 35 MB/s 8s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 811 MB/1.1 GB 35 MB/s 8s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 813 MB/1.1 GB 35 MB/s 8s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 817 MB/1.1 GB 35 MB/s 8s\u001b[?25h\n", |
|
"pulling aabd4debf0c8... 73% ▕███████████ ▏ 821 MB/1.1 GB 35 MB/s 8s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 824 MB/1.1 GB 35 MB/s 8s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 825 MB/1.1 GB 35 MB/s 8s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 828 MB/1.1 GB 35 MB/s 8s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 833 MB/1.1 GB 35 MB/s 7s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 835 MB/1.1 GB 35 MB/s 7s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 838 MB/1.1 GB 34 MB/s 7s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 839 MB/1.1 GB 34 MB/s 7s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 843 MB/1.1 GB 34 MB/s 7s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 847 MB/1.1 GB 34 MB/s 7s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 849 MB/1.1 GB 34 MB/s 7s\u001b[?25h\n", |
|
"pulling aabd4debf0c8... 76% ▕████████████ ▏ 854 MB/1.1 GB 34 MB/s 7s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 858 MB/1.1 GB 34 MB/s 7s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 859 MB/1.1 GB 34 MB/s 7s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 865 MB/1.1 GB 34 MB/s 7s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 869 MB/1.1 GB 34 MB/s 7s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 871 MB/1.1 GB 34 MB/s 7s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 876 MB/1.1 GB 34 MB/s 6s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 880 MB/1.1 GB 34 MB/s 6s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 883 MB/1.1 GB 34 MB/s 6s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 887 MB/1.1 GB 34 MB/s 6s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 892 MB/1.1 GB 34 MB/s 6s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 893 MB/1.1 GB 34 MB/s 6s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 895 MB/1.1 GB 34 MB/s 6s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 898 MB/1.1 GB 34 MB/s 6s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 902 MB/1.1 GB 34 MB/s 6s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ▏ 904 MB/1.1 GB 34 MB/s 6s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest █ ▏ 908 MB/1.1 GB 34 MB/s 6s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest █ ▏ 910 MB/1.1 GB 34 MB/s 5s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest █ ▏ 914 MB/1.1 GB 34 MB/s 5s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest █ ▏ 918 MB/1.1 GB 34 MB/s 5s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest █ ▏ 920 MB/1.1 GB 34 MB/s 5s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest █ ▏ 922 MB/1.1 GB 34 MB/s 5s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest █ ▏ 926 MB/1.1 GB 34 MB/s 5s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest █ ▏ 928 MB/1.1 GB 34 MB/s 5s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest █ ▏ 932 MB/1.1 GB 34 MB/s 5s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest █ ▏ 935 MB/1.1 GB 34 MB/s 5s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest █ ▏ 938 MB/1.1 GB 34 MB/s 5s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest █ ▏ 941 MB/1.1 GB 34 MB/s 5s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest █ ▏ 945 MB/1.1 GB 34 MB/s 4s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest █ ▏ 948 MB/1.1 GB 34 MB/s 4s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest █ ▏ 953 MB/1.1 GB 34 MB/s 4s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest █ ▏ 957 MB/1.1 GB 34 MB/s 4s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest █ ▏ 960 MB/1.1 GB 34 MB/s 4s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest █ ▏ 963 MB/1.1 GB 34 MB/s 4s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest █ ▏ 967 MB/1.1 GB 34 MB/s 4s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest █ ▏ 969 MB/1.1 GB 34 MB/s 4s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest █ ▏ 973 MB/1.1 GB 34 MB/s 4s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ██ ▏ 978 MB/1.1 GB 34 MB/s 3s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ██ ▏ 980 MB/1.1 GB 34 MB/s 3s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ██ ▏ 985 MB/1.1 GB 34 MB/s 3s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ██ ▏ 988 MB/1.1 GB 34 MB/s 3s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ██ ▏ 989 MB/1.1 GB 34 MB/s 3s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ██ ▏ 994 MB/1.1 GB 34 MB/s 3s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ██ ▏ 997 MB/1.1 GB 34 MB/s 3s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ██ ▏ 1.0 GB/1.1 GB 34 MB/s 3s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ██ ▏ 1.0 GB/1.1 GB 34 MB/s 3s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ██ ▏ 1.0 GB/1.1 GB 35 MB/s 3s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ██ ▏ 1.0 GB/1.1 GB 35 MB/s 2s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ██ ▏ 1.0 GB/1.1 GB 35 MB/s 2s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ██ ▏ 1.0 GB/1.1 GB 35 MB/s 2s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ██ ▏ 1.0 GB/1.1 GB 35 MB/s 2s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ██ ▏ 1.0 GB/1.1 GB 35 MB/s 2s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ██ ▏ 1.0 GB/1.1 GB 35 MB/s 2s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ██ ▏ 1.0 GB/1.1 GB 35 MB/s 2s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ██ ▏ 1.0 GB/1.1 GB 35 MB/s 2s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ██ ▏ 1.0 GB/1.1 GB 35 MB/s 2s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ██ ▏ 1.0 GB/1.1 GB 35 MB/s 2s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ██ ▏ 1.0 GB/1.1 GB 34 MB/s 2s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ██ ▏ 1.0 GB/1.1 GB 34 MB/s 2s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 34 MB/s 1s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 34 MB/s 1s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 34 MB/s 1s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 34 MB/s 1s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 34 MB/s 1s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 34 MB/s 1s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 34 MB/s 1s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 34 MB/s 1s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 33 MB/s 1s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 33 MB/s 1s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 33 MB/s 1s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 33 MB/s 0s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 33 MB/s 0s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 33 MB/s 0s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 33 MB/s 0s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 33 MB/s 0s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 33 MB/s 0s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 33 MB/s 0s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 32 MB/s 0s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 32 MB/s 0s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 32 MB/s 0s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 32 MB/s 0s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 32 MB/s 0s\u001b[?25h\n", |
|
"pulling aabd4debf0c8... 99% ▕███████████████ ▏ 1.1 GB/1.1 GB 32 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 32 MB/s 0s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 32 MB/s 0s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 32 MB/s 0s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 32 MB/s 0s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 30 MB/s 0s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 30 MB/s 0s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 30 MB/s 0s\u001b[?25h\n", |
|
"pulling aabd4debf0c8... 100% ▕███████████████ ▏ 1.1 GB/1.1 GB 30 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 30 MB/s 0s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 30 MB/s 0s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 30 MB/s 0s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 30 MB/s 0s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 30 MB/s 0s\u001b[?25h\n", |
|
"pulling aabd4debf0c8... 100% ▕███████████████ ▏ 1.1 GB/1.1 GB 30 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 26 MB/s 0s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 26 MB/s 0s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 26 MB/s 0s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 26 MB/s 0s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 26 MB/s 0s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 26 MB/s 0s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 26 MB/s 0s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 26 MB/s 0s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 26 MB/s 0s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 26 MB/s 0s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 26 MB/s 0s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 23 MB/s 0s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 23 MB/s 0s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 23 MB/s 0s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 23 MB/s 0s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 23 MB/s 0s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 23 MB/s 0s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ███ ▏ 1.1 GB/1.1 GB 23 MB/s 0s\u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ████▏ 1.1 GB \u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ████▏ 1.1 GB \u001b[?25h\n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ████▏ 1.1 GB \u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ████▏ 1.1 GB \u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ████▏ 1.1 GB \u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ████▏ 1.1 GB \u001b[?25h\n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest ████▏ 1.1 GB \u001b[?25h\n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest B/ 387 B \u001b[?25h\n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest B/ 387 B \u001b[?25h\n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest B/ 387 B \u001b[?25h\n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest B \u001b[?25h\n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest B \u001b[?25h\n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest B \u001b[?25h\n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest B \u001b[?25h\n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest B \u001b[?25h\n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest B \u001b[?25h\n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest B \u001b[?25h\n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest B \u001b[?25h\n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest B \u001b[?25h\n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest B \u001b[?25h\n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"pulling 369ca498f347... 100% ▕████████████████▏ 387 B \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \u001b[?25h\n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"pulling 369ca498f347... 100% ▕████████████████▏ 387 B \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \u001b[?25h\n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"pulling 369ca498f347... 100% ▕████████████████▏ 387 B \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \u001b[?25h\n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"pulling 369ca498f347... 100% ▕████████████████▏ 387 B \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \u001b[?25h\n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"pulling 369ca498f347... 100% ▕████████████████▏ 387 B \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \u001b[?25h\n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"pulling 369ca498f347... 100% ▕████████████████▏ 387 B \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \u001b[?25h\n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"pulling 369ca498f347... 100% ▕████████████████▏ 387 B \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \u001b[?25h\n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"pulling 369ca498f347... 100% ▕████████████████▏ 387 B \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \u001b[?25h\n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"pulling 369ca498f347... 100% ▕████████████████▏ 387 B \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \u001b[?25h\n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"pulling 369ca498f347... 100% ▕████████████████▏ 387 B \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \u001b[?25h\n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"pulling 369ca498f347... 100% ▕████████████████▏ 387 B \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \u001b[?25h\n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"pulling 369ca498f347... 100% ▕████████████████▏ 387 B \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \u001b[?25h\n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"pulling 369ca498f347... 100% ▕████████████████▏ 387 B \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \u001b[?25h\n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"pulling 369ca498f347... 100% ▕████████████████▏ 387 B \n", |
|
"pulling 6e4c38e1172f... 100% ▕████████████████▏ 1.1 KB \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \u001b[?25h\n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"pulling 369ca498f347... 100% ▕████████████████▏ 387 B \n", |
|
"pulling 6e4c38e1172f... 100% ▕████████████████▏ 1.1 KB \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \u001b[?25h\n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"pulling 369ca498f347... 100% ▕████████████████▏ 387 B \n", |
|
"pulling 6e4c38e1172f... 100% ▕████████████████▏ 1.1 KB \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \u001b[?25h\n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"pulling 369ca498f347... 100% ▕████████████████▏ 387 B \n", |
|
"pulling 6e4c38e1172f... 100% ▕████████████████▏ 1.1 KB \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \u001b[?25h\n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"pulling 369ca498f347... 100% ▕████████████████▏ 387 B \n", |
|
"pulling 6e4c38e1172f... 100% ▕████████████████▏ 1.1 KB \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \u001b[?25h\n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"pulling 369ca498f347... 100% ▕████████████████▏ 387 B \n", |
|
"pulling 6e4c38e1172f... 100% ▕████████████████▏ 1.1 KB \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \u001b[?25h\n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"pulling 369ca498f347... 100% ▕████████████████▏ 387 B \n", |
|
"pulling 6e4c38e1172f... 100% ▕████████████████▏ 1.1 KB \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \u001b[?25h\n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"pulling 369ca498f347... 100% ▕████████████████▏ 387 B \n", |
|
"pulling 6e4c38e1172f... 100% ▕████████████████▏ 1.1 KB \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \u001b[?25h\n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"pulling 369ca498f347... 100% ▕████████████████▏ 387 B \n", |
|
"pulling 6e4c38e1172f... 100% ▕████████████████▏ 1.1 KB \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \u001b[?25h\n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"pulling 369ca498f347... 100% ▕████████████████▏ 387 B \n", |
|
"pulling 6e4c38e1172f... 100% ▕████████████████▏ 1.1 KB \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \u001b[?25h\n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"pulling 369ca498f347... 100% ▕████████████████▏ 387 B \n", |
|
"pulling 6e4c38e1172f... 100% ▕████████████████▏ 1.1 KB \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \u001b[?25h\n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"pulling 369ca498f347... 100% ▕████████████████▏ 387 B \n", |
|
"pulling 6e4c38e1172f... 100% ▕████████████████▏ 1.1 KB \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \u001b[?25h\n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"pulling 369ca498f347... 100% ▕████████████████▏ 387 B \n", |
|
"pulling 6e4c38e1172f... 100% ▕████████████████▏ 1.1 KB \n", |
|
"pulling f4d24e9138dd... 100% ▕████████████████▏ 148 B \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"pulling 369ca498f347... 100% ▕████████████████▏ 387 B \n", |
|
"pulling 6e4c38e1172f... 100% ▕████████████████▏ 1.1 KB \n", |
|
"pulling f4d24e9138dd... 100% ▕████████████████▏ 148 B \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"pulling 369ca498f347... 100% ▕████████████████▏ 387 B \n", |
|
"pulling 6e4c38e1172f... 100% ▕████████████████▏ 1.1 KB \n", |
|
"pulling f4d24e9138dd... 100% ▕████████████████▏ 148 B \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"pulling 369ca498f347... 100% ▕████████████████▏ 387 B \n", |
|
"pulling 6e4c38e1172f... 100% ▕████████████████▏ 1.1 KB \n", |
|
"pulling f4d24e9138dd... 100% ▕████████████████▏ 148 B \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"pulling 369ca498f347... 100% ▕████████████████▏ 387 B \n", |
|
"pulling 6e4c38e1172f... 100% ▕████████████████▏ 1.1 KB \n", |
|
"pulling f4d24e9138dd... 100% ▕████████████████▏ 148 B \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"pulling 369ca498f347... 100% ▕████████████████▏ 387 B \n", |
|
"pulling 6e4c38e1172f... 100% ▕████████████████▏ 1.1 KB \n", |
|
"pulling f4d24e9138dd... 100% ▕████████████████▏ 148 B \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"pulling 369ca498f347... 100% ▕████████████████▏ 387 B \n", |
|
"pulling 6e4c38e1172f... 100% ▕████████████████▏ 1.1 KB \n", |
|
"pulling f4d24e9138dd... 100% ▕████████████████▏ 148 B \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"pulling 369ca498f347... 100% ▕████████████████▏ 387 B \n", |
|
"pulling 6e4c38e1172f... 100% ▕████████████████▏ 1.1 KB \n", |
|
"pulling f4d24e9138dd... 100% ▕████████████████▏ 148 B \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"pulling 369ca498f347... 100% ▕████████████████▏ 387 B \n", |
|
"pulling 6e4c38e1172f... 100% ▕████████████████▏ 1.1 KB \n", |
|
"pulling f4d24e9138dd... 100% ▕████████████████▏ 148 B \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"pulling 369ca498f347... 100% ▕████████████████▏ 387 B \n", |
|
"pulling 6e4c38e1172f... 100% ▕████████████████▏ 1.1 KB \n", |
|
"pulling f4d24e9138dd... 100% ▕████████████████▏ 148 B \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"pulling 369ca498f347... 100% ▕████████████████▏ 387 B \n", |
|
"pulling 6e4c38e1172f... 100% ▕████████████████▏ 1.1 KB \n", |
|
"pulling f4d24e9138dd... 100% ▕████████████████▏ 148 B \n", |
|
"pulling a85fe2a2e58e... 100% ▕████████████████▏ 487 B \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"pulling 369ca498f347... 100% ▕████████████████▏ 387 B \n", |
|
"pulling 6e4c38e1172f... 100% ▕████████████████▏ 1.1 KB \n", |
|
"pulling f4d24e9138dd... 100% ▕████████████████▏ 148 B \n", |
|
"pulling a85fe2a2e58e... 100% ▕████████████████▏ 487 B \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"pulling 369ca498f347... 100% ▕████████████████▏ 387 B \n", |
|
"pulling 6e4c38e1172f... 100% ▕████████████████▏ 1.1 KB \n", |
|
"pulling f4d24e9138dd... 100% ▕████████████████▏ 148 B \n", |
|
"pulling a85fe2a2e58e... 100% ▕████████████████▏ 487 B \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"pulling 369ca498f347... 100% ▕████████████████▏ 387 B \n", |
|
"pulling 6e4c38e1172f... 100% ▕████████████████▏ 1.1 KB \n", |
|
"pulling f4d24e9138dd... 100% ▕████████████████▏ 148 B \n", |
|
"pulling a85fe2a2e58e... 100% ▕████████████████▏ 487 B \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"pulling 369ca498f347... 100% ▕████████████████▏ 387 B \n", |
|
"pulling 6e4c38e1172f... 100% ▕████████████████▏ 1.1 KB \n", |
|
"pulling f4d24e9138dd... 100% ▕████████████████▏ 148 B \n", |
|
"pulling a85fe2a2e58e... 100% ▕████████████████▏ 487 B \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"pulling 369ca498f347... 100% ▕████████████████▏ 387 B \n", |
|
"pulling 6e4c38e1172f... 100% ▕████████████████▏ 1.1 KB \n", |
|
"pulling f4d24e9138dd... 100% ▕████████████████▏ 148 B \n", |
|
"pulling a85fe2a2e58e... 100% ▕████████████████▏ 487 B \n", |
|
"\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"pulling 369ca498f347... 100% ▕████████████████▏ 387 B \n", |
|
"pulling 6e4c38e1172f... 100% ▕████████████████▏ 1.1 KB \n", |
|
"pulling f4d24e9138dd... 100% ▕████████████████▏ 148 B \n", |
|
"pulling a85fe2a2e58e... 100% ▕████████████████▏ 487 B \n", |
|
"verifying sha256 digest ⠦ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n", |
|
"pulling aabd4debf0c8... 100% ▕████████████████▏ 1.1 GB \n", |
|
"pulling 369ca498f347... 100% ▕████████████████▏ 387 B \n", |
|
"pulling 6e4c38e1172f... 100% ▕████████████████▏ 1.1 KB \n", |
|
"pulling f4d24e9138dd... 100% ▕████████████████▏ 148 B \n", |
|
"pulling a85fe2a2e58e... 100% ▕████████████████▏ 487 B \n", |
|
"verifying sha256 digest \n", |
|
"writing manifest \n", |
|
"success \u001b[?25h\n" |
|
] |
|
} |
|
], |
|
"source": [ |
|
"!ollama pull deepseek-r1:1.5b" |
|
] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": 10, |
|
"id": "1d3d554b-e00d-4c08-9300-45e073950a76", |
|
"metadata": {}, |
|
"outputs": [ |
|
{ |
|
"name": "stdout", |
|
"output_type": "stream", |
|
"text": [ |
|
"<think>\n", |
|
"Okay, so I need to explain the concepts behind language models (LLMs)— especially focusing on how neural networks work and what attention mechanism does. Let me start by breaking down each part.\n", |
|
"\n", |
|
"First, what's a neural network? I know it involves layers with neurons connected together. Each layer processes information. But where did all that come from? Oh yeah, it's inspired by the human brain. The brain has billions of neurons connected in various ways, so maybe that analogy helps some people.\n", |
|
"\n", |
|
"Then there are different types of neural networks like RNNs and CNNs. Hmm, I remember RNNs have loops making them \" recurrent,\" which makes them good for sequences because they can remember previous information. Then there's the CNN layer, which uses multiple layers to detect features in images. But how does this relate to language models? Maybe LLMs can use CNNs as part of their architecture.\n", |
|
"\n", |
|
"The core idea is something about patterns and relationships in data, so I should mention that it's similar to learning language by building up these patterns. Also, each decision helps the model understand more about the text.\n", |
|
"\n", |
|
"Next is attention. I think it has to do with how models focus on certain parts of the input or relevant pieces. It reduces complexity because instead of remembering every word, the model pays attention and learns context.\n", |
|
"\n", |
|
"Transformers are a big part here. They came up recently since older models were too slow for LLMs. Transformers have self-attention modules where each token's representation depends on others, using dot products. This helps capture long-range dependencies in text because they're processed step by step without need for sequential memory (like recurrent units). It allows the model to understand relationships across different parts of a sentence.\n", |
|
"\n", |
|
"What about large models? Maybe they have many layers and heavy data. Training them is computationally intensive, so techniques like pruning or quantization are used, but sometimes just adding more could still work if properly optimized and trained.\n", |
|
"\n", |
|
"Applications: They are good for text generation, translation, summarization, etc. Handling high-dimensional outputs with attention mechanisms helps models make sense of all the words in context.\n", |
|
"\n", |
|
"Challenges: Managing computational resources since they're big. Hyperparameters are tricky because you need to find right settings without too much compute time. Training might not converge as easily as smaller models due to higher complexity and data needed.\n", |
|
"\n", |
|
"So putting it together, a neural network in an LLM processes text by recognizing patterns through layers, using attention to focus on relevant parts, and the transformer for global dependencies efficiently with self-attention, improving large model capabilities while handling complexity.\n", |
|
"</think>\n", |
|
"\n", |
|
"**Definitions of Core Concepts Behind Language Models (LLMs):**\n", |
|
"\n", |
|
"1. **Neural Network:**\n", |
|
" - A neural network is a computational system modeled after the human brain, consisting of layers of interconnected neurons. Each neuron processes information through weighted connections and applies an activation function (e.g., ReLU or softmax). Neural networks learn by adjusting these weights during training to minimize error between predictions and actual data.\n", |
|
"\n", |
|
"2. **Attention Mechanism:**\n", |
|
" - Attention in LLMs enables the model to focus on specific parts of input text, reducing complexity from processing every word. It enhances understanding by concentrating on relevant contextual information, particularly useful in capturing long-range dependencies that are crucial for language processing.\n", |
|
"\n", |
|
"3. **Transformer Architecture:**\n", |
|
" - Transformers revolutionized language modeling with their self-attention mechanism. Unlike traditional recurrent neural networks (RNNs), transformers use multi-head attention where each token processes its representation based on others, allowing them to learn relationships across distant parts of text efficiently without sequential memory.\n", |
|
"\n", |
|
"These components, when combined, enable LLMs to process and understand vast amounts of text effectively.\n" |
|
] |
|
} |
|
], |
|
"source": [ |
|
"# This may take a few minutes to run! You should then see a fascinating \"thinking\" trace inside <think> tags, followed by some decent definitions\n", |
|
"\n", |
|
"response = ollama_via_openai.chat.completions.create(\n", |
|
" model=\"deepseek-r1:1.5b\",\n", |
|
" messages=[{\"role\": \"user\", \"content\": \"Please give definitions of some core concepts behind LLMs: a neural network, attention and the transformer\"}]\n", |
|
")\n", |
|
"\n", |
|
"print(response.choices[0].message.content)" |
|
] |
|
}, |
|
{ |
|
"cell_type": "markdown", |
|
"id": "1622d9bb-5c68-4d4e-9ca4-b492c751f898", |
|
"metadata": {}, |
|
"source": [ |
|
"# NOW the exercise for you\n", |
|
"\n", |
|
"Take the code from day1 and incorporate it here, to build a website summarizer that uses Llama 3.2 running locally instead of OpenAI; use either of the above approaches." |
|
] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": 11, |
|
"id": "6de38216-6d1c-48c4-877b-86d403f4e0f8", |
|
"metadata": {}, |
|
"outputs": [ |
|
{ |
|
"name": "stdout", |
|
"output_type": "stream", |
|
"text": [ |
|
"Generative AI has numerous business applications across various industries, including:\n", |
|
"\n", |
|
"1. **Content Creation**: Generative AI can be used to generate high-quality content such as articles, social media posts, product descriptions, and even entire books.\n", |
|
"2. **Marketing Automation**: Generative AI can help automate marketing tasks such as email campaigns, ad copywriting, and personalized product recommendations.\n", |
|
"3. **Product Design**: Generative AI can be used to design new products, including 3D models, logos, and packaging designs.\n", |
|
"4. **Data Annotation**: Generative AI can help annotate large datasets with labels, tags, and descriptions, reducing the time and cost associated with manual annotation.\n", |
|
"5. **Predictive Maintenance**: Generative AI can be used to predict equipment failures, reducing downtime and improving maintenance efficiency.\n", |
|
"6. **Customer Service Chatbots**: Generative AI-powered chatbots can provide personalized customer support, answering frequently asked questions and routing complex queries to human agents.\n", |
|
"7. **Financial Analysis**: Generative AI can help analyze financial data, identify trends, and predict market behavior, enabling better investment decisions.\n", |
|
"8. **Graphic Design**: Generative AI can be used to generate high-quality graphics, including logos, infographics, and social media posts.\n", |
|
"9. **Speech Synthesis**: Generative AI-powered speech synthesis can be used to create realistic voices for audio applications, such as voice assistants or audiobooks.\n", |
|
"10. **Cybersecurity Threat Detection**: Generative AI can help detect and respond to cybersecurity threats in real-time, reducing the risk of data breaches.\n", |
|
"\n", |
|
"Some specific business use cases include:\n", |
|
"\n", |
|
"* **Lululemon**: Using generative AI to design new yoga pants and athletic wear\n", |
|
"* **McDonald's**: Using generative AI to create personalized marketing messages and promotions\n", |
|
"* **BMW**: Using generative AI to design new car models and interior designs\n", |
|
"* **Netflix**: Using generative AI to recommend personalized content to users\n", |
|
"\n", |
|
"These are just a few examples of the many business applications of Generative AI. As the technology continues to evolve, we can expect to see even more innovative uses across various industries.\n" |
|
] |
|
} |
|
], |
|
"source": [ |
|
"import ollama\n", |
|
"\n", |
|
"response = ollama.chat(model=MODEL, messages=messages)\n", |
|
"print(response['message']['content'])" |
|
] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": 12, |
|
"id": "54d8ae8c-14c8-4fbb-bc73-b469d677ea5c", |
|
"metadata": {}, |
|
"outputs": [], |
|
"source": [ |
|
"# A class to represent a Webpage\n", |
|
"# If you're not familiar with Classes, check out the \"Intermediate Python\" notebook\n", |
|
"\n", |
|
"# Some websites need you to use proper headers when fetching them:\n", |
|
"headers = {\n", |
|
" \"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36\"\n", |
|
"}\n", |
|
"\n", |
|
"class Website:\n", |
|
"\n", |
|
" def __init__(self, url):\n", |
|
" \"\"\"\n", |
|
" Create this Website object from the given url using the BeautifulSoup library\n", |
|
" \"\"\"\n", |
|
" self.url = url\n", |
|
" response = requests.get(url, headers=headers)\n", |
|
" soup = BeautifulSoup(response.content, 'html.parser')\n", |
|
" self.title = soup.title.string if soup.title else \"No title found\"\n", |
|
" for irrelevant in soup.body([\"script\", \"style\", \"img\", \"input\"]):\n", |
|
" irrelevant.decompose()\n", |
|
" self.text = soup.body.get_text(separator=\"\\n\", strip=True)" |
|
] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": null, |
|
"id": "f1eaa8bc-f530-4ba1-a2ff-129aa317eeb3", |
|
"metadata": {}, |
|
"outputs": [], |
|
"source": [] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": 19, |
|
"id": "72938110-1b74-4780-bd1f-7ff1102ebbd4", |
|
"metadata": {}, |
|
"outputs": [], |
|
"source": [ |
|
"# A class to represent a Webpage\n", |
|
"# If you're not familiar with Classes, check out the \"Intermediate Python\" notebook\n", |
|
"\n", |
|
"# Some websites need you to use proper headers when fetching them:\n", |
|
"headers = {\n", |
|
" \"User-Agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36\"\n", |
|
"}\n", |
|
"\n", |
|
"class Website:\n", |
|
"\n", |
|
" def __init__(self, url):\n", |
|
" \"\"\"\n", |
|
" Create this Website object from the given url using the BeautifulSoup library\n", |
|
" \"\"\"\n", |
|
" self.url = url\n", |
|
" response = requests.get(url, headers=headers)\n", |
|
" soup = BeautifulSoup(response.content, 'html.parser')\n", |
|
" self.title = soup.title.string if soup.title else \"No title found\"\n", |
|
" for irrelevant in soup.body([\"script\", \"style\", \"img\", \"input\"]):\n", |
|
" irrelevant.decompose()\n", |
|
" self.text = soup.body.get_text(separator=\"\\n\", strip=True)" |
|
] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": 20, |
|
"id": "c222c909-2912-4543-bbf9-896e89e3e2cf", |
|
"metadata": {}, |
|
"outputs": [ |
|
{ |
|
"data": { |
|
"text/plain": [ |
|
"\"Did you know that IBM's first database management system, called System R, was released in 1970 and only managed data stored on mainframe computers?\\n\\nNow, as for your question... the answer to 2 + 2 is 4. Simple math!\"" |
|
] |
|
}, |
|
"execution_count": 20, |
|
"metadata": {}, |
|
"output_type": "execute_result" |
|
} |
|
], |
|
"source": [ |
|
"# Let's try one out. Change the website and add print statements to follow along.\n", |
|
"\n", |
|
"ed = Website(\"https://docs.databricks.com/en/catalog-explorer/index.html\")\n", |
|
"\n", |
|
"messages = [\n", |
|
" {\"role\": \"system\", \"content\": \"You are a professional assistant that starts the response with a random fact about databases\"},\n", |
|
" {\"role\": \"user\", \"content\": \"What is 2 + 2?\"}\n", |
|
"]\n", |
|
"\n", |
|
"def summarize(url):\n", |
|
" website = Website(url)\n", |
|
" response = ollama_via_openai.chat.completions.create(model=MODEL,messages=messages)\n", |
|
" return response.choices[0].message.content\n", |
|
"summarize(\"https://docs.databricks.com/en/catalog-explorer/index.html\")" |
|
] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": null, |
|
"id": "a80ed79a-5742-4cf6-9354-a8780de70422", |
|
"metadata": {}, |
|
"outputs": [], |
|
"source": [] |
|
}, |
|
{ |
|
"cell_type": "code", |
|
"execution_count": null, |
|
"id": "0c97823b-c766-47ad-a4f4-cb61d6dd67d8", |
|
"metadata": {}, |
|
"outputs": [], |
|
"source": [] |
|
} |
|
], |
|
"metadata": { |
|
"kernelspec": { |
|
"display_name": "Python 3 (ipykernel)", |
|
"language": "python", |
|
"name": "python3" |
|
}, |
|
"language_info": { |
|
"codemirror_mode": { |
|
"name": "ipython", |
|
"version": 3 |
|
}, |
|
"file_extension": ".py", |
|
"mimetype": "text/x-python", |
|
"name": "python", |
|
"nbconvert_exporter": "python", |
|
"pygments_lexer": "ipython3", |
|
"version": "3.11.11" |
|
} |
|
}, |
|
"nbformat": 4, |
|
"nbformat_minor": 5 |
|
}
|
|
|