diff --git a/deploy_stack.ps1 b/deploy_stack.ps1 new file mode 100644 index 00000000..dedb19c6 --- /dev/null +++ b/deploy_stack.ps1 @@ -0,0 +1,11 @@ +#!ps1 + +if (Get-Command docker -errorAction SilentlyContinue) +{ + Write-Host "Deploying stack" + docker stack deploy func --compose-file ./docker-compose.yml +} +else +{ + Write-Host "Unable to find docker command, please install Docker (https://www.docker.com/) and retry" +}