9 lines
283 B
PowerShell
Executable File
9 lines
283 B
PowerShell
Executable File
param (
|
|
[string]$docker_compose_version
|
|
)
|
|
|
|
$ErrorActionPreference = "Stop";
|
|
$ProgressPreference = "SilentlyContinue";
|
|
|
|
Invoke-WebRequest -O "dist/docker-compose.exe" "https://github.com/docker/compose/releases/download/$($docker_compose_version)/docker-compose-Windows-x86_64.exe"
|