Skip to content

Commit a7489d0

Browse files
committed
updates docker-compose references in docs
1 parent fa1cc25 commit a7489d0

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

docs/content/pandora.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ GHOSTS PANDORA is a web server that responds to a myriad of request types with r
1111

1212
Docker is the preferred way to run Pandora - mostly because this is how we run and test it before version releases.
1313

14-
1. Review the repository [docker-compose.yml](https://github.com/cmu-sei/GHOSTS/blob/master/src/ghosts.pandora/docker-compose.yml) file
14+
1. Review the repository [docker-compose.yml](https://raw.githubusercontent.com/cmu-sei/GHOSTS/master/src/ghosts.pandora/docker-compose.yml) file
1515
2. Run the following in your terminal
1616

1717
```cmd
1818
mkdir ghosts-pandora
1919
cd ghosts-pandora
20-
curl https://github.com/cmu-sei/GHOSTS/blob/master/src/ghosts.pandora/docker-compose.yml -o docker-compose.yml
20+
curl https://raw.githubusercontent.com/cmu-sei/GHOSTS/master/src/ghosts.pandora/docker-compose.yml -o docker-compose.yml
2121
docker-compose up -d
2222
```
2323

docs/core/api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ The GHOSTS API enables the control and orchestration of non-player characters (N
99

1010
1. Install 🐳 [Docker](https://docs.docker.com/install/) :material-open-in-new:
1111
2. Install [Docker Compose](https://docs.docker.com/compose/install/) :material-open-in-new:
12-
3. Run the following commands - we'll use [this docker-compose.yml file](https://github.com/cmu-sei/GHOSTS/blob/master/src/Ghosts.Api/docker-compose.yml)
12+
3. Run the following commands - we'll use [this docker-compose.yml file](https://raw.githubusercontent.com/cmu-sei/GHOSTS/master/src/Ghosts.Api/docker-compose.yml)
1313

1414
```cmd
1515
mkdir ghosts
1616
cd ghosts
17-
curl https://github.com/cmu-sei/GHOSTS/blob/master/src/Ghosts.Api/docker-compose.yml -o docker-compose.yml
17+
curl https://raw.githubusercontent.com/cmu-sei/GHOSTS/master/src/Ghosts.Api/docker-compose.yml -o docker-compose.yml
1818
docker-compose up -d
1919
```
2020

docs/quickstart.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ Easy installation requires:
1111

1212
1. Install 🐳 [Docker](https://docs.docker.com/install/){:target="_blank"}
1313
2. Install [Docker Compose](https://docs.docker.com/compose/install/){:target="_blank"}
14-
3. We'll use [this docker-compose.yml file](https://github.com/cmu-sei/GHOSTS/blob/master/src/Ghosts.Api/docker-compose.yml){:target="_blank"} in the following command block which will download the required containers will automatically. The commands to stand up the GHOSTS API containers is:
14+
3. We'll use [this docker-compose.yml file](https://raw.githubusercontent.com/cmu-sei/GHOSTS/master/src/Ghosts.Api/docker-compose.yml){:target="_blank"} in the following command block which will download the required containers will automatically. The commands to stand up the GHOSTS API containers is:
1515

1616
```cmd
1717
mkdir ghosts-api
1818
cd ghosts-api
19-
curl https://github.com/cmu-sei/GHOSTS/blob/master/src/Ghosts.Api/docker-compose.yml -o docker-compose.yml
19+
curl https://raw.githubusercontent.com/cmu-sei/GHOSTS/master/src/Ghosts.Api/docker-compose.yml -o docker-compose.yml
2020
docker-compose up -d
2121
```
2222

0 commit comments

Comments
 (0)