forked from LengKundee/MQL5-Google-Onedrive
16 lines
753 B
Markdown
16 lines
753 B
Markdown
|
|
# Docker CLI Setup
|
||
|
|
|
||
|
|
## Installation
|
||
|
|
|
||
|
|
The Docker command-line interface (CLI) is included with Docker Desktop. To install it, you need to install Docker Desktop for your operating system.
|
||
|
|
|
||
|
|
Please refer to the official documentation for detailed installation instructions:
|
||
|
|
|
||
|
|
- **Windows:** [Install Docker Desktop on Windows](https://docs.docker.com/desktop/setup/install/windows-install/)
|
||
|
|
- **macOS:** [Install Docker Desktop on Mac](https://docs.docker.com/desktop/setup/install/mac-install/)
|
||
|
|
- **Linux:** [Install Docker Desktop on Linux](https://docs.docker.com/desktop/setup/install/linux-install/)
|
||
|
|
|
||
|
|
After installation, the `docker` command will be available in your terminal. You can verify the installation by running:
|
||
|
|
```shell
|
||
|
|
docker --version
|
||
|
|
```
|