docker系统如何下载docker
时间: 2024-01-11 15:22:28 浏览: 75
以下是两种下载docker的方法:
1. 在Linux系统中下载docker-compose[^1]
```shell
curl -SL https://github.com/docker/compose/releases/download/v2.15.1/docker-compose-linux-x86_64 -o /usr/local/bin/docker-compose
```
2. 在Windows系统中下载docker-compose[^2]
```shell
Start-BitsTransfer -Source "https://github.com/docker/compose/releases/download/v2.15.1/docker-compose-Windows-x86_64.exe" -Destination $Env:ProgramFiles\Docker\docker-compose.exe
```
阅读全文