@@ -7,8 +7,8 @@ title: Quick Start
77Concourse is distributed as a single concourse binary, making it easy to run just about anywhere, especially with
88Docker.
99
10- If you'd like to get Concourse running somewhere quickly so you can start to kick the tires, the easiest way is to use
11- our [ docker-compose.yml] ( https://concourse-ci.org /docker-compose.yml) :
10+ If you'd like to get Concourse running somewhere quickly, so you can start to kick the tires, the easiest way is to use
11+ our [ docker-compose.yml] ( ../.. /docker-compose.yml) :
1212
1313```
1414$ curl -O https://concourse-ci.org/docker-compose.yml
@@ -26,7 +26,7 @@ username/password as `test`/`test`.
2626
2727## Install Fly
2828
29- Next, install the [ ` fly ` CLI] ( https://concourse-ci.org /fly.html ) by downloading it from the web UI. If you're on
29+ Next, install the [ ` fly ` CLI] ( .. /fly.md ) by downloading it from the web UI. If you're on
3030version >=v7.14.0 of Concourse, you can visit [ http://localhost:8080/download-fly ] ( http://localhost:8080/download-fly ) .
3131
3232Otherwise, you can follow these steps to install fly for your OS:
@@ -46,6 +46,7 @@ Otherwise, you can follow these steps to install fly for your OS:
4646 chmod +x ./fly
4747 mv ./fly /usr/local/bin/
4848 ```
49+
4950=== "Windows (Powershell)"
5051
5152 ``` ps1 linenums="1"
@@ -56,7 +57,7 @@ Otherwise, you can follow these steps to install fly for your OS:
5657 Invoke-WebRequest $concourseURL -OutFile "${concoursePath}\fly.exe"
5758 ```
5859
59- Use [ fly login] ( https://concourse-ci.org /fly.html #fly-login) to log into your local Concourse as the ` test ` user:
60+ Use [ ` fly login ` ] ( .. /fly.md #fly-login) to log into your local Concourse as the ` test ` user:
6061
6162```
6263fly -t tutorial login -c http://localhost:8080 -u test -p test
@@ -71,7 +72,7 @@ target saved
7172```
7273
7374You'll notice that every fly command in this tutorial has to have
74- the [ target (-t tutorial)] ( https://concourse-ci.org /fly.html #fly-targets) specified. This is annoying when you only have
75+ the [ target (` -t tutorial ` )] ( .. /fly.md #fly-targets) specified. This is annoying when you only have
7576one Concourse to target, but it helps ensure you don't trigger a job on the wrong Concourse instance. It will save you
7677from hurting yourself!
7778
0 commit comments