Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 5 additions & 21 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,10 @@ You can use prebuilt images generated by our CI workflow by downloading the dock
- Linux Machine

```
curl -o /tmp/crapi.zip https://github.com/OWASP/crAPI/archive/refs/heads/main.zip

curl -L -o /tmp/crapi.zip https://github.com/OWASP/crAPI/archive/refs/heads/main.zip
unzip /tmp/crapi.zip

cd crAPI-main/deploy/docker

docker compose pull

docker compose -f docker-compose.yml --compatibility up -d
```

Expand All @@ -51,14 +47,10 @@ You can use prebuilt images generated by our CI workflow by downloading the dock
- Windows Machine

```
curl.exe -o crapi.zip https://github.com/OWASP/crAPI/archive/refs/heads/main.zip

curl.exe -L -o crapi.zip https://github.com/OWASP/crAPI/archive/refs/heads/main.zip
tar -xf .\crapi.zip

cd crAPI-main/deploy/docker

docker compose pull

docker compose -f docker-compose.yml --compatibility up -d
```

Expand All @@ -75,14 +67,10 @@ You can use prebuilt images generated by our CI workflow by downloading the dock
- Linux Machine

```
curl -o /tmp/crapi.zip https://github.com/OWASP/crAPI/archive/refs/heads/develop.zip

unzip /tmp/crapi.zip

curl -L -o /tmp/crapi.zip https://github.com/OWASP/crAPI/archive/refs/heads/develop.zip
unzip /tmp/crapi.zip
cd crAPI-develop/deploy/docker

docker compose pull

docker compose -f docker-compose.yml --compatibility up -d
```

Expand All @@ -97,14 +85,10 @@ You can use prebuilt images generated by our CI workflow by downloading the dock
- Windows Machine

```
curl.exe -o crapi.zip https://github.com/OWASP/crAPI/archive/refs/heads/develop.zip

curl.exe -L -o crapi.zip https://github.com/OWASP/crAPI/archive/refs/heads/develop.zip
tar -xf .\crapi.zip

cd crAPI-develop/deploy/docker

docker compose pull

docker compose -f docker-compose.yml --compatibility up -d
```

Expand Down
26 changes: 5 additions & 21 deletions docs/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,10 @@ You can use prebuilt images generated by our CI workflow by downloading the dock
- Linux Machine

```
curl -o /tmp/crapi.zip https://github.com/OWASP/crAPI/archive/refs/heads/main.zip

curl -L -o /tmp/crapi.zip https://github.com/OWASP/crAPI/archive/refs/heads/main.zip
unzip /tmp/crapi.zip

cd crAPI-main/deploy/docker

docker compose pull

docker compose -f docker-compose.yml --compatibility up -d
```

Expand All @@ -45,14 +41,10 @@ You can use prebuilt images generated by our CI workflow by downloading the dock
- Windows Machine

```
curl.exe -o crapi.zip https://github.com/OWASP/crAPI/archive/refs/heads/main.zip

curl.exe -L -o crapi.zip https://github.com/OWASP/crAPI/archive/refs/heads/main.zip
tar -xf .\crapi.zip

cd crAPI-main/deploy/docker

docker compose pull

docker compose -f docker-compose.yml --compatibility up -d
```

Expand All @@ -64,19 +56,15 @@ You can use prebuilt images generated by our CI workflow by downloading the dock
LISTEN_IP="0.0.0.0" docker compose -f docker-compose.yml --compatibility up -d
```

- To use the latest development version
- To use the latest development version

- Linux Machine

```
curl -o /tmp/crapi.zip https://github.com/OWASP/crAPI/archive/refs/heads/develop.zip

curl -L -o /tmp/crapi.zip https://github.com/OWASP/crAPI/archive/refs/heads/develop.zip
unzip /tmp/crapi.zip

cd crAPI-develop/deploy/docker

docker compose pull

docker compose -f docker-compose.yml --compatibility up -d
```

Expand All @@ -91,14 +79,10 @@ You can use prebuilt images generated by our CI workflow by downloading the dock
- Windows Machine

```
curl.exe -o crapi.zip https://github.com/OWASP/crAPI/archive/refs/heads/develop.zip

curl.exe -L -o crapi.zip https://github.com/OWASP/crAPI/archive/refs/heads/develop.zip
tar -xf .\crapi.zip

cd crAPI-develop/deploy/docker

docker compose pull

docker compose -f docker-compose.yml --compatibility up -d
```

Expand Down