mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 21:39:40 +02:00
9 lines
283 B
PowerShell
9 lines
283 B
PowerShell
|
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"
|