Docker windows 10 wls установка

Содержание
  1. Подсистема Docker в Windows Docker Engine on Windows
  2. Установка Docker Install Docker
  3. Настройка Docker с помощью файла конфигурации Configure Docker with a configuration file
  4. Настройка Docker в службе Docker Configure Docker on the Docker service
  5. Распространенные конфигурации Common configuration
  6. Создание сети по умолчанию Default network creation
  7. Задание группы безопасности для Docker Set Docker security group
  8. Конфигурация прокси-сервера Proxy configuration
  9. Удаление Docker How to uninstall Docker
  10. Подготовка системы к удалению Docker Prepare your system for Docker’s removal
  11. Удаление Docker Uninstall Docker
  12. Очистка данных и системных компонентов Docker Clean up Docker data and system components
  13. Перезагрузка системы Reboot your system
  14. Начало работы с удаленными контейнерами Docker в WSL 2 Get started with Docker remote containers on WSL 2
  15. Общие сведения о контейнерах Docker Overview of Docker containers
  16. Предварительные требования Prerequisites
  17. Установка Docker Desktop Install Docker Desktop
  18. Разработка в удаленных контейнерах с помощью VS Code Develop in remote containers using VS Code
  19. Устранение неполадок Troubleshooting
  20. Нерекомендуемый контекст DOCKER WSL WSL docker context deprecated
  21. Не удается найти папку хранилища образов DOCKER Trouble finding docker image storage folder

Подсистема Docker в Windows Docker Engine on Windows

Подсистема и клиент Docker не входят в состав Windows, потому их нужно устанавливать и настраивать отдельно. The Docker Engine and client aren’t included with Windows and need to be installed and configured individually. Кроме того, подсистема Docker может принимать множество пользовательских конфигураций. Furthermore, the Docker Engine can accept many custom configurations. Например, можно настроить то, как управляющая программа принимает входящие запросы, сетевые параметры по умолчанию и параметры ведения журнала и отладки. Some examples include configuring how the daemon accepts incoming requests, default networking options, and debug/log settings. В ОС Windows эти конфигурации можно указать в файле конфигурации или с помощью диспетчера служб Windows. On Windows, these configurations can be specified in a configuration file or by using Windows Service control manager. В этом документе объясняется установка и настройка подсистемы Docker; также представлены примеры некоторых часто используемых конфигураций. This document details how to install and configure the Docker Engine, and also provides some examples of commonly used configurations.

Установка Docker Install Docker

Для работы с контейнерами Windows требуется Docker. You need Docker in order to work with Windows Containers. Docker состоит из подсистемы Docker (dockerd.exe) и клиента Docker (docker.exe). Docker consists of the Docker Engine (dockerd.exe), and the Docker client (docker.exe). Самый простой способ установить все необходимые компоненты изложен в кратком руководстве, которое поможет настроить и запустить первый контейнер. The easiest way to get everything installed is in the quickstart guide, which will help you get everything set up and run your first container.

Сведения об установке с помощью сценария см. в разделе Использование сценария для установки Docker EE. For scripted installations, see Use a script to install Docker EE.

Прежде чем использовать Docker, необходимо установить образы контейнеров. Before you can use Docker, you’ll need to install the container images. Дополнительные сведения см. в документации по образам контейнеров. For more information, see docs for our container base images.

Настройка Docker с помощью файла конфигурации Configure Docker with a configuration file

Предпочтительным способом настройки подсистемы Docker в Windows является использование файла конфигурации. The preferred method for configuring the Docker Engine on Windows is using a configuration file. Путь к файлу конфигурации — C:\ProgramData\Docker\config\daemon.json. The configuration file can be found at ‘C:\ProgramData\Docker\config\daemon.json’. Если этот файл еще не существует, его можно создать. You can create this file if it doesn’t already exist.

Не все доступные параметры конфигурации Docker применяются к Docker в Windows. Not every available Docker configuration option applies to Docker on Windows. В примере ниже показаны параметры конфигурации, которые применяются. The following example shows the configuration options that do apply. Дополнительные сведения о конфигурации подсистемы Docker см. в статье Docker daemon configuration file (Файл конфигурации управляющей программы Docker). For more information about Docker Engine configuration, see Docker daemon configuration file.

Достаточно только внести необходимые изменения в файл конфигурации. You only need to add the desired configuration changes to the configuration file. Например, в этом случае подсистема Docker настраивается на прием входящих подключений через порт 2375. For example, the following sample configures the Docker Engine to accept incoming connections on port 2375. В других параметрах конфигурации будут использоваться значения по умолчанию. All other configuration options will use default values.

Аналогично в примере ниже настраивается хранение образов и контейнеров по альтернативному пути в управляющей программе Docker. Likewise, the following sample configures the Docker daemon to keep images and containers in an alternate path. Если оно не указано, по умолчанию используется значение c:\programdata\docker . If not specified, the default is c:\programdata\docker .

В примере ниже управляющая программа Docker настраивается на прием только защищенных подключений через порт 2376. The following sample configures the Docker daemon to only accept secured connections over port 2376.

Настройка Docker в службе Docker Configure Docker on the Docker service

Подсистему Docker можно также настроить, изменив службу Docker командой sc config . The Docker Engine can also be configured by modifying the Docker service with sc config . При использовании этого способа флаги подсистемы Docker задаются непосредственно в службе Docker. Using this method, Docker Engine flags are set directly on the Docker service. Выполните указанную ниже команду в командной строке (cmd.exe, не PowerShell). Run the following command in a command prompt (cmd.exe not PowerShell):

Не нужно выполнять эту команду в том случае, если файл daemon.json уже содержит запись «hosts»: [«tcp://0.0.0.0:2375»] . You don’t need to run this command if your daemon.json file already contains the «hosts»: [«tcp://0.0.0.0:2375»] entry.

Распространенные конфигурации Common configuration

В следующих примерах файла конфигурации представлены распространенные конфигурации Docker. The following configuration file examples show common Docker configurations. Их можно объединить в один файл конфигурации. These can be combined into a single configuration file.

Создание сети по умолчанию Default network creation

Чтобы настроить подсистему Docker таким образом, чтобы не была создана сеть NAT по умолчанию, используйте следующую конфигурацию. To configure the Docker Engine so that it doesn’t create a default NAT network, use the following configuration.

Дополнительные сведения см. в статье Управление сетями Docker. For more information, see Manage Docker Networks.

Задание группы безопасности для Docker Set Docker security group

После входа в систему на узле Docker и запуска команд Docker эти команды выполняются через именованный канал. When you’ve signed in to the Docker host and are locally running Docker commands, these commands are run through a named pipe. По умолчанию только члены группы «Администраторы» могут получить доступ к подсистеме Docker через именованный канал. By default, only members of the Administrators group can access the Docker Engine through the named pipe. Чтобы указать группу безопасности, имеющую такой доступ, используйте флаг group . To specify a security group that has this access, use the group flag.

Конфигурация прокси-сервера Proxy configuration

Чтобы задать данные о прокси-сервере для docker search и docker pull , создайте переменную среды Windows с именем HTTP_PROXY или HTTPS_PROXY и значением, содержащим данные о прокси-сервере. To set proxy information for docker search and docker pull , create a Windows environment variable with the name HTTP_PROXY or HTTPS_PROXY , and a value of the proxy information. Это можно сделать в PowerShell, используя команду следующего вида: This can be completed with PowerShell using a command similar to this:

После задания переменной перезапустите службу Docker. Once the variable has been set, restart the Docker service.

Дополнительные сведения см. в разделе Windows Configuration File (Файл конфигурации Windows) на сайте Docker.com. For more information, see Windows Configuration File on Docker.com.

Удаление Docker How to uninstall Docker

В этом разделе описывается, как удалить Docker и выполнить полную очистку компонентов системы Docker в Windows 10 или Windows Server 2016. This section will tell you how to uninstall Docker and perform a full cleanup of Docker system components from your Windows 10 or Windows Server 2016 system.

Все команды в этих инструкциях необходимо выполнять из сеанса PowerShell с повышенными привилегиями. You must run all commands in these instructions from an elevated PowerShell session.

Подготовка системы к удалению Docker Prepare your system for Docker’s removal

Перед удалением Docker убедитесь, что в системе не запущены контейнеры. Before you uninstall Docker, make sure no containers are running on your system.

Выполните следующие командлеты, чтобы найти работающие контейнеры: Run the following cmdlets to check for running containers:

Кроме того, перед удалением Docker рекомендуется удалить все контейнеры, образы контейнеров, сети и тома из системы. It’s also good practice to remove all containers, container images, networks, and volumes from your system before removing Docker. Это можно сделать, выполнив следующий командлет: You can do this by running the following cmdlet:

Читайте также:  Windows 10 отключить синхронизацию обоев

Удаление Docker Uninstall Docker

Затем необходимо начать собственно удаление Docker. Next, you’ll need to actually uninstall Docker.

Удаление Docker в Windows 10 To uninstall Docker on Windows 10

  • На компьютере с Windows 10 перейдите в раздел Параметры >Приложения. Go to Settings >Apps on your Windows 10 machine
  • В разделе Приложения и компоненты найдите пункт Docker для Windows Under Apps & Features, find Docker for Windows
  • Последовательно выберите Docker для Windows >Удалить. Go to Docker for Windows >Uninstall

Удаление Docker в Windows Server 2016 To uninstall Docker on Windows Server 2016:

В сеансе PowerShell с повышенными привилегиями используйте командлеты Uninstall-Package и Uninstall-Module, чтобы удалить модуль Docker и соответствующий ему поставщик Управление пакетами из системы, как показано в следующем примере: From an elevated PowerShell session, use the Uninstall-Package and Uninstall-Module cmdlets to remove the Docker module and its corresponding Package Management Provider from your system, as shown in the following example:

Вы можете найти поставщик пакетов, который использовался для установки Docker с помощью команды PS C:\> Get-PackageProvider -Name *Docker* You can find the Package Provider that you used to install Docker with PS C:\> Get-PackageProvider -Name *Docker*

Очистка данных и системных компонентов Docker Clean up Docker data and system components

После удаления Docker необходимо удалить сети Docker по умолчанию, чтобы их конфигурация не оставалась в системе после того, как Docker будет удален. After you uninstall Docker, you’ll need to remove Docker’s default networks so their configuration won’t remain on your system after Docker is gone. Это можно сделать, выполнив следующий командлет: You can do this by running the following cmdlet:

Удалите сети по умолчанию Docker в Windows Server 2016. To remove Docker’s default networks on Windows Server 2016.

Выполните следующий командлет, чтобы удалить программные данные Docker из системы: Run the following cmdlet to remove Docker’s program data from your system:

Можно также удалить необязательные компоненты Windows, связанные с Docker и контейнерами в Windows. You may also want to remove the Windows optional features associated with Docker/containers on Windows.

К ним относится компонент «Контейнеры», который автоматически включается в любом экземпляре Windows 10 или Windows Server 2016 при установке Docker. This includes the «Containers» feature, which is automatically enabled on any Windows 10 or Windows Server 2016 when Docker is installed. Это также может быть компонент «Hyper-V», который автоматически включается в Windows 10 при установке Docker, однако в Windows Server 2016 он включается вручную. It may also include the «Hyper-V» feature, which is automatically enabled on Windows 10 when Docker is installed, but must be explicitly enabled on Windows Server 2016.

Компонент Hyper-V является общим компонентом виртуализации, который обеспечивает гораздо большую функциональность, чем при использовании одних только контейнеров. The Hyper-V feature is a general virtualization feature that enables much more than just containers. Прежде чем отключить Hyper-V, убедитесь, что в системе нет других виртуальных компонентов, которые зависят от Hyper-V. Before disabling the Hyper-V feature, make sure there are no other virtualized components on your system that require Hyper-V.

Удаление компонентов Windows 10 To remove Windows features on Windows 10:

  • Выберите последовательно Панель управления >Программы >Программы и компоненты >Включение или отключение компонентов Windows. Go to Control Panel >Programs >Programs and Features >Turn Windows features on or off.
  • Найдите имя компонента, который требуется отключить — в данном случае это Контейнеры и (необязательно) Hyper-V. Find the name of the feature or features you want to disable—in this case, Containers and (optionally) Hyper-V.
  • Снимите флажок рядом с именем компонента, который нужно отключить. Uncheck the box next to the name of the feature you want to disable.
  • Нажмите кнопку ОК. Select «OK»

Удаление компонентов Windows Server 2016 To remove Windows features on Windows Server 2016:

В сеансе PowerShell с повышенными привилегиями выполните следующие командлеты, чтобы отключить компоненты Контейнеры и (необязательно) Hyper-V. From an elevated PowerShell session, run the following cmdlets to disable the Containers and (optionally) Hyper-V features from your system:

Перезагрузка системы Reboot your system

Чтобы завершить удаление компонентов и очистить систему, выполните следующий командлет из сеанса PowerShell с повышенными привилегиями для перезагрузки системы: To finish uninstallation and cleanup, run the following cmdlet from an elevated PowerShell session to reboot your system:

Начало работы с удаленными контейнерами Docker в WSL 2 Get started with Docker remote containers on WSL 2

Это пошаговое руководство поможет приступить к разработке с помощью удаленных контейнеров, настроив для Windows классическую версию DOCKER, WSL 2 (подсистему Windows для Linux, версия 2). This step-by-step guide will help you get started developing with remote containers by setting up Docker Desktop for Windows with WSL 2 (Windows Subsystem for Linux, version 2).

Служба DOCKER Desktop для Windows доступна бесплатно и предоставляет среду разработки для создания, доставки и запуска приложений пакетных. Docker Desktop for Windows is available for free and provides a development environment for building, shipping, and running dockerized apps. Включив модуль на основе WSL 2, вы можете запускать контейнеры Linux и Windows на рабочем столе DOCKER на одном компьютере. By enabling the WSL 2 based engine, you can run both Linux and Windows containers in Docker Desktop on the same machine.

Общие сведения о контейнерах Docker Overview of Docker containers

Docker — это средство для создания, развертывания и запуска приложений с использованием контейнеров. Docker is a tool used to create, deploy, and run applications using containers. Контейнеры позволяют разработчикам упаковывать приложения с использованием всех необходимых компонентов (библиотек, платформ, зависимостей и т. п.) и поставлять все это как один пакет. Containers enable developers to package an app with all of the parts it needs (libraries, frameworks, dependencies, etc) and ship it all out as one package. Использование контейнера дает возможность приложению работать одинаково, независимо от настроенных параметров или ранее установленных библиотек на компьютере, где оно запускается, так как он может отличаться от компьютера, который использовался для написания и тестирования кода приложения. Using a container ensures that the app will run the same regardless of any customized settings or previously installed libraries on the computer running it that could differ from the machine that was used to write and test the app’s code. Это позволяет разработчикам сосредоточиться на написании кода, не беспокоясь о том, в какой системе он будет выполняться. This permits developers to focus on writing code without worrying about the system that code will be run on.

Контейнеры Docker похожи на виртуальные машины, но не создают всю виртуальную операционную систему. Docker containers are similar to virtual machines, but don’t create an entire virtual operating system. Вместо этого контейнер Docker позволяет приложению использовать то же ядро Linux, что и система, в которой оно работает. Instead, Docker enables the app to use the same Linux kernel as the system that it’s running on. Таким образом пакету приложения требуются только те части, которых еще нет на главном компьютере. В результате размер пакета уменьшается, а производительность увеличивается. This allows the app package to only require parts not already on the host computer, reducing the package size and improving performance.

Постоянная доступность, которую обеспечивает использование контейнеров Docker с такими инструментами, как Kubernetes, — еще одна причина популярности контейнеров. Continuous availability, using Docker containers with tools like Kubernetes, is another reason for the popularity of containers. Это позволяет создавать несколько версий контейнера приложения в разное время. This enables multiple versions of your app container to be created at different times. Вместо того чтобы останавливать всю систему для обновления или обслуживания, каждый контейнер (и определенные микрослужбы) можно заменить на лету. Rather than needing to take down an entire system for updates or maintenance, each container (and it’s specific microservices) can be replaced on the fly. Вы можете подготовить новый контейнер со всеми обновлениями, настроить его для рабочей среды и просто указать новый контейнер после его готовности. You can prepare a new container with all of your updates, set up the container for production, and just point to the new container once it’s ready. Можно также архивировать различные версии вашего приложения, используя контейнеры, и при необходимости поддерживать их работу в качестве резервного ресурса. You can also archive different versions of your app using containers and keep them running as a safety fallback if needed.

Дополнительные сведения см. в разделе Введение в контейнеры DOCKER на Microsoft Learn. To learn more, checkout the Introduction to Docker containers on Microsoft Learn.

Читайте также:  Сбросить dns cache linux

Предварительные требования Prerequisites

  • Убедитесь, что на компьютере установлена ОС Windows 10, обновлена до версии 2004, Сборка 18362 или более поздняя версия. Ensure your machine is running Windows 10, updated to version 2004, Build 18362 or higher.
  • Включите WSL, установите дистрибутив Linux и обновите его до версии WSL 2. Enable WSL, install a Linux distribution, and update to WSL 2.
  • Скачайте и установите пакет обновления ядра Linux. Download and install the Linux kernel update package.
  • Установите Visual Studio Code(необязательно). Install Visual Studio Code(optional). Это обеспечит лучшие возможности, включая возможность кодирования и отладки в удаленном контейнере DOCKER и подключения к дистрибутиву Linux. This will provide the best experience, including the ability to code and debug inside a remote Docker container and connected to your Linux distribution.
  • Установите терминал Windows(необязательно). Install Windows Terminal(optional). Это обеспечит лучшие возможности, включая возможность настройки и открытия нескольких терминалов в одном интерфейсе (включая Ubuntu, Debian, PowerShell, Azure CLI или то, что вы предпочитаете использовать). This will provide the best experience, including the ability to customize and open multiple terminals in the same interface (including Ubuntu, Debian, PowerShell, Azure CLI, or whatever you prefer to use).
  • Зарегистрируйте идентификатор DOCKER в DOCKER Hub(необязательно). Sign up for a Docker ID at Docker Hub(optional).

WSL может запускать дистрибутивы в режиме WSL версии 1 или WSL 2. WSL can run distributions in both WSL version 1 or WSL 2 mode. Это можно проверить, открыв PowerShell и введя: wsl -l -v . You can check this by opening PowerShell and entering: wsl -l -v . Убедитесь, что дистрибутив настроен на использование WSL 2, введя: wsl —set-version 2 . Ensure that the your distribution is set to use WSL 2 by entering: wsl —set-version 2 . Замените на имя дистрибутив (например, Ubuntu 18,04). Replace with the distro name (e.g. Ubuntu 18.04).

В WSL версии 1 из-за фундаментальных различий между Windows и Linux подсистема DOCKER не смогла запуститься непосредственно внутри WSL, поэтому Группа DOCKER разработала альтернативное решение с использованием виртуальных машин Hyper-V и Линукскит. In WSL version 1, due to fundamental differences between Windows and Linux, the Docker Engine couldn’t run directly inside WSL, so the Docker team developed an alternative solution using Hyper-V VMs and LinuxKit. Однако поскольку WSL 2 теперь работает в ядре Linux с полной емкостью системных вызовов, Docker можно полностью запустить в WSL 2. However, since WSL 2 now runs on a Linux kernel with full system call capacity, Docker can fully run in WSL 2. Это означает, что контейнеры Linux могут работать изначально без эмуляции, что обеспечивает лучшую производительность и совместимость со средствами Windows и Linux. This means that Linux containers can run natively without emulation, resulting in better performance and interoperability between your Windows and Linux tools.

Установка Docker Desktop Install Docker Desktop

Если серверная часть WSL 2 поддерживается в DOCKER Desktop для Windows, вы можете работать в среде разработки на основе Linux и создавать контейнеры на основе Linux, используя Visual Studio Code для редактирования кода и отладки, а также запуска контейнера в браузере Microsoft ребра в Windows. With the WSL 2 backend supported in Docker Desktop for Windows, you can work in a Linux-based development environment and build Linux-based containers, while using Visual Studio Code for code editing and debugging, and running your container in the Microsoft Edge browser on Windows.

Чтобы установить DOCKER (после установки WSL 2), сделайте следующее: To install Docker (after already installing WSL 2):

Скачайте DOCKER Desktop и следуйте инструкциям по установке. Download Docker Desktop and follow the installation instructions.

После установки запустите приложение DOCKER Desktop из меню «Пуск» Windows, а затем выберите значок DOCKER в меню «скрытые значки» панели задач. Once installed, start Docker Desktop from the Windows Start menu, then select the Docker icon from the hidden icons menu of your taskbar. Щелкните правой кнопкой мыши значок, чтобы открыть меню команд DOCKER и выбрать пункт «Параметры». Right-click the icon to display the Docker commands menu and select «Settings».

Убедитесь, что флажок «использовать ядро на основе WSL 2» установлен в параметрах > Общие. Ensure that «Use the WSL 2 based engine» is checked in Settings > General.

Выберите из установленных дистрибутивов WSL 2, для которых вы хотите включить интеграцию с DOCKER, перейдя по следующим параметрам > ресурсы > WSL Integration. Select from your installed WSL 2 distributions which you want to enable Docker integration on by going to: Settings > Resources > WSL Integration.

Чтобы убедиться, что DOCKER установлен, откройте дистрибутив WSL (например, Ubuntu) и отобразите версию и номер сборки, введя следующее: docker —version To confirm that Docker has been installed, open a WSL distribution (e.g. Ubuntu) and display the version and build number by entering: docker —version

Проверьте, правильно ли работает установка, выполнив простой встроенный образ DOCKER с помощью: docker run hello-world Test that your installation works correctly by running a simple built-in Docker image using: docker run hello-world

Вот несколько полезных команд DOCKER для получения сведений: Here are a few helpful Docker commands to know:

  • Перечислить команды, доступные в интерфейсе командной строки Docker, можно, выполнив команду docker . List the commands available in the Docker CLI by entering: docker
  • Просмотреть сведения о конкретной команде можно, выполнив команду docker —help . List information for a specific command with: docker —help
  • Перечислить образы Docker на вашем компьютере (сейчас только образ Hello-World) можно, используя следующие команды docker image ls —all . List the docker images on your machine (which is just the hello-world image at this point), with: docker image ls —all
  • Перечислите контейнеры на компьютере с помощью: docker container ls —all или docker ps -a (без флага Показать все, будут отображаться только выполняющиеся контейнеры). List the containers on your machine, with: docker container ls —all or docker ps -a (without the -a show all flag, only running containers will be displayed)
  • Перечислите системную информацию об установке DOCKER, включая статистику и ресурсы (память ЦП &), доступные в контексте WSL 2, с помощью: docker info List system-wide information regarding the Docker installation, including statistics and resources (CPU & memory) available to you in the WSL 2 context, with: docker info

Разработка в удаленных контейнерах с помощью VS Code Develop in remote containers using VS Code

Чтобы приступить к разработке приложений с помощью DOCKER с WSL 2, мы рекомендуем использовать VS Code, а также расширение Remote-WSL и расширение DOCKER. To get started developing apps using Docker with WSL 2, we recommend using VS Code, along with the Remote-WSL extension and Docker extension.

Установите VS Code расширение Remote-WSL. Install the VS Code Remote-WSL extension. Это расширение позволяет открыть проект Linux, работающий на WSL, в VS Code (не нужно беспокоиться о проблемах с путями, двоичной совместимости или других задачах, связанных с разными операционными системами). This extension enables you to open your Linux project running on WSL in VS Code (no need to worry about pathing issues, binary compatibility, or other cross-OS challenges).

Установите расширение VS code Remote-Containers. Install the VS code Remote-Containers extension. Это расширение позволяет открыть папку проекта или репозиторий в контейнере, используя преимущества полного набора функций Visual Studio Code для выполнения разработки в контейнере. This extension enables you to open your project folder or repo inside of a container, taking advantage of Visual Studio Code’s full feature set to do your development work within the container.

Установите VS Code расширение DOCKER. Install the VS Code Docker extension. Это расширение добавляет функциональные возможности для создания и развертывания контейнерных приложений, а также управления ими в VS Code. This extension adds the functionality to build, manage, and deploy containerized applications from inside VS Code. (Для фактического использования контейнера в качестве среды разработки требуется расширение Remote-Container.) (You need the Remote-Container extension to actually use the container as your dev environment.)

Давайте создадим контейнер разработки для существующего проекта приложения с помощью DOCKER. Let’s use Docker to create a development container for an existing app project.

В этом примере я использую исходный код из руководства по Hello World Django в среде разработки Python Настройка документов. Этот шаг можно пропустить, если вы предпочитаете использовать собственный исходный код проекта. For this example, I’ll use the source code from my Hello World tutorial for Django in the Python development environment set up docs. You can skip this step if you prefer to use your own project source code. Чтобы скачать веб-приложение HelloWorld-Django из GitHub, откройте терминал WSL (например, Ubuntu) и введите: git clone https://github.com/mattwojo/helloworld-django.git To download my HelloWorld-Django web app from GitHub, open a WSL terminal (Ubuntu for example) and enter: git clone https://github.com/mattwojo/helloworld-django.git

Читайте также:  Timing mac os x

Всегда храните код в той же файловой системе, в которой вы используете средства. Always store your code in the same file system that you’re using tools in. Это приведет к повышению производительности доступа к файлам. This will result in faster file access performance. В этом примере мы используем Linux дистрибутив (Ubuntu) и хотим сохранить файлы проекта в файловой системе WSL \\wsl\ . In this example, we are using a Linux distro (Ubuntu) and want to store our project files on the WSL file system \\wsl\ . Хранение файлов проекта в файловой системе Windows значительно замедляет работу при использовании средств Linux в WSL для доступа к этим файлам. Storing project files on the Windows file system would significantly slow things down when using Linux tools in WSL to access those files.

В терминале WSL измените каталоги на папку исходного кода для этого проекта: From your WSL terminal, change directories to the source code folder for this project:

Откройте проект в VS Code, работающем на локальном сервере расширений Remote-WSL, введя следующее: Open the project in VS Code running on the local Remote-WSL extension server by entering:

Убедитесь, что вы подключены к WSL Linux дистрибутив, проверив зеленый индикатор зеленого цвета в левом нижнем углу экземпляра VS Code. Confirm that you are connected to your WSL Linux distro by checking the green remote indicator in the bottom-left corner of your VS Code instance.

В VS Code команде паллетте (Ctrl + Shift + P) введите: Remote-Containers: Open Folder in контейнер. Если эта команда не отображается при вводе, убедитесь, что вы установили расширение удаленного контейнера, связанное выше. From the VS Code command pallette (Ctrl + Shift + P), enter: Remote-Containers: Open Folder in Container. If this command doesn’t display as you begin to type it, check to ensure that you’ve installed the Remote Container extension linked above.

Выберите папку проекта, которую вы хотите контейнеризовать. Select the project folder that you wish to containerize. В моем случае это \\wsl\Ubuntu-20.04\home\mattwojo\repos\helloworld-django\ In my case, this is \\wsl\Ubuntu-20.04\home\mattwojo\repos\helloworld-django\

Появится список определений контейнеров, так как в папке проекта (репозитории) еще нет конфигурации Девконтаинер. A list of container definitions will appear, since there is no DevContainer configuration in the project folder (repo) yet. Список отображаемых определений конфигурации контейнера фильтруется на основе типа проекта. The list of container configuration definitions that appears is filtered based on your project type. Для моего проекта Django я выберу Python 3. For my Django project, I’ll select Python 3.

Откроется новый экземпляр VS Code, начнется создание нового образа и после завершения сборки будет запущен наш контейнер. A new instance of VS Code will open, begin building our new image, and once the build completed, will start our container. Вы увидите, что новая .devcontainer Папка содержит сведения о конфигурации контейнера в Dockerfile devcontainer.json файле и. You will see that a new .devcontainer folder has appeared with container configuration information inside a Dockerfile and devcontainer.json file.

Чтобы убедиться, что проект по-прежнему подключен к WSL и в контейнере, откройте VS Code интегрированный терминал (Ctrl + Shift +

). To confirm that your project is still connected to both WSL and within a container, open the VS Code integrated terminal (Ctrl + Shift +

). Проверьте операционную систему, введя: uname и версию Python с: python3 —version . Check the operating system by entering: uname and the Python version with: python3 —version . Вы видите, что uname возвращено как Linux, поэтому вы все еще подключены к подсистеме WSL 2, а номер версии Python будет основан на конфигурации контейнера, которая может отличаться от версии Python, установленной в дистрибутиве WSL. You can see that the uname came back as «Linux», so you are still connected to the WSL 2 engine, and Python version number will be based on the container config that may differ from the Python version installed on your WSL distribution.

Чтобы запустить и выполнить отладку приложения в контейнере с помощью Visual Studio Code, сначала откройте меню выполнить (Ctrl + Shift + D или выберите вкладку в левой строке меню). To run and debug your app inside of the container using Visual Studio Code, first open the Run menu (Ctrl+Shift+D or select the tab on the far left menu bar). Затем выберите Запуск и отладка , чтобы выбрать конфигурацию отладки и выбрать конфигурацию, наиболее подходящую для вашего проекта (в нашем примере это будет «Django»). Then select Run and Debug to select a debug configuration and choose the configuration that best suites your project (in my example, this will be «Django»). При этом launch.json в папке проекта будет создан файл .vscode с инструкциями по запуску приложения. This will create a launch.json file in the .vscode folder of your project with instructions on how to run your app.

В VS Code выберите запустить > отладку запуска (или просто нажмите клавишу F5 ). From inside VS Code, select Run > Start debugging (or just press the F5 key). При этом откроется окно терминала в VS Code. результат должен выглядеть следующим образом: «Запуск сервера разработки при http://127.0.0.1:8000/ выходе из системы на сервере с помощью Control-C». This will open a terminal inside VS Code and you should see a result saying something like: «Starting development server at http://127.0.0.1:8000/ Quit the server with CONTROL-C.» Удерживайте нажатой клавишу CTRL и выберите отображаемый адрес, чтобы открыть приложение в веб-браузере по умолчанию и просмотреть проект, работающий в контейнере. Hold down the Control key and select the address displayed to open your app in your default web browser and see your project running inside of its container.

Вы успешно настроили удаленный контейнер разработки с помощью DOCKER Desktop, на базе серверной части WSL 2, который можно использовать для кодирования, сборки, запуска, развертывания или отладки с помощью VS Code! You have now successfully configured a remote development container using Docker Desktop, powered by the WSL 2 backend, that you can code in, build, run, deploy, or debug using VS Code!

Устранение неполадок Troubleshooting

Нерекомендуемый контекст DOCKER WSL WSL docker context deprecated

Если вы использовали предварительную ознакомительную версию DOCKER для WSL, возможно, у вас есть контекст DOCKER с именем «WSL», который теперь устарел и больше не используется. If you were using an early Tech Preview of Docker for WSL, you may have a Docker context called «wsl» that is now deprecated and no longer used. Можно проверить с помощью команды: docker context ls . You can check with the command: docker context ls . Вы можете удалить контекст «WSL», чтобы избежать ошибок с помощью команды: docker context rm wsl так, как вы хотите использовать контекст по умолчанию для Windows и WSL2. You can remove this «wsl» context to avoid errors with the command: docker context rm wsl as you want to use the default context for both Windows and WSL2.

Возможные ошибки, которые могут возникнуть при работе с этим нерекомендуемым контекстом WSL, включают: docker wsl open //./pipe/docker_wsl: The system cannot find the file specified. или error during connect: Get http://%2F%2F.%2Fpipe%2Fdocker_wsl/v1.40/images/json?all=1: open //./pipe/docker_wsl: The system cannot find the file specified. Possible errors you might encounter with this deprecated wsl context include: docker wsl open //./pipe/docker_wsl: The system cannot find the file specified. or error during connect: Get http://%2F%2F.%2Fpipe%2Fdocker_wsl/v1.40/images/json?all=1: open //./pipe/docker_wsl: The system cannot find the file specified.

Не удается найти папку хранилища образов DOCKER Trouble finding docker image storage folder

DOCKER создает две папки дистрибутив для хранения данных: Docker creates two distro folders to store data:

  • \WSL $ \доккер-десктоп \wsl$\docker-desktop
  • \WSL $ \доккер-десктоп-Дата \wsl$\docker-desktop-data

Эти папки можно найти, открыв дистрибутив WSL Linux и введя: explorer.exe . для просмотра папки в проводнике Windows. You can find these folders by opening your WSL Linux distribution and entering: explorer.exe . to view the folder in Windows File Explorer. Введите: \\wsl\ \mnt\wsl замените именем вашего распространения (IE. Ubuntu-20,04) для просмотра этих папок. Enter: \\wsl\ \mnt\wsl replacing with the name of your distribution (ie. Ubuntu-20.04) to see these folders.

Дополнительные сведения о поиске расположений хранилищ DOCKER в WSL см. в этой статье из РЕПОЗИТОРИЯ WSL или этой стакковерлов записи. Find more on locating docker storage locations in WSL, see this issue from the WSL repo or this StackOverlow post.

Дополнительные сведения об устранении общих проблем в WSL см. в документации по устранению неполадок . For more help with general troubleshooting issues in WSL, see the Troubleshooting doc.

Оцените статью