Qarik-Group / concourse-tutorial

Learn to use https://concourse-ci.org with this linear sequence of tutorials. Learn each concept that builds on the previous concept.
870 stars 555 forks source link

Windows Set up requires more detail #268

Open joshthefin opened 1 year ago

joshthefin commented 1 year ago

wget does not exist on windows by default and instead is an alias to Invoke-WebRequest. For me, this cmdlet does not download to the current folder by default. This means the first step of the tutorial does not work by default on windows, as there is no docker-compose.yml file in the local directory.

User must kill that alias with: ''Remove-item alias:wget" followed by downloading wget: https://eternallybored.org/misc/wget/. Then they can rerun "wget https://raw.githubusercontent.com/starkandwayne/concourse-tutorial/master/docker-compose.yml"

(Or you can probably configure Invoke-WebRequest but I didn't look into this)