mirror of
https://github.com/A6-9V/MQL5-Google-Onedrive.git
synced 2026-04-10 22:30:56 +00:00
This commit adds documentation for the installation and setup of the following CLI tools: - Jules CLI - Cursor CLI - Firebase CLI - Docker CLI - GitHub CLI The documentation is located in the `docs` directory.
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
|
|
```
|