@@ -23,14 +23,10 @@ You can use prebuilt images generated by our CI workflow by downloading the dock
2323 - Linux Machine
2424
2525 ```
26- curl -o /tmp/crapi.zip https://github.com/OWASP/crAPI/archive/refs/heads/main.zip
27-
26+ curl -L -o /tmp/crapi.zip https://github.com/OWASP/crAPI/archive/refs/heads/main.zip
2827 unzip /tmp/crapi.zip
29-
3028 cd crAPI-main/deploy/docker
31-
3229 docker compose pull
33-
3430 docker compose -f docker-compose.yml --compatibility up -d
3531 ```
3632
@@ -45,14 +41,10 @@ You can use prebuilt images generated by our CI workflow by downloading the dock
4541 - Windows Machine
4642
4743 ```
48- curl.exe -o crapi.zip https://github.com/OWASP/crAPI/archive/refs/heads/main.zip
49-
44+ curl.exe -L -o crapi.zip https://github.com/OWASP/crAPI/archive/refs/heads/main.zip
5045 tar -xf .\crapi.zip
51-
5246 cd crAPI-main/deploy/docker
53-
5447 docker compose pull
55-
5648 docker compose -f docker-compose.yml --compatibility up -d
5749 ```
5850
@@ -64,19 +56,15 @@ You can use prebuilt images generated by our CI workflow by downloading the dock
6456 LISTEN_IP="0.0.0.0" docker compose -f docker-compose.yml --compatibility up -d
6557 ```
6658
67- - To use the latest development version
59+ - To use the latest development version
6860
6961 - Linux Machine
7062
7163 ```
72- curl -o /tmp/crapi.zip https://github.com/OWASP/crAPI/archive/refs/heads/develop.zip
73-
64+ curl -L -o /tmp/crapi.zip https://github.com/OWASP/crAPI/archive/refs/heads/develop.zip
7465 unzip /tmp/crapi.zip
75-
7666 cd crAPI-develop/deploy/docker
77-
7867 docker compose pull
79-
8068 docker compose -f docker-compose.yml --compatibility up -d
8169 ```
8270
@@ -91,14 +79,10 @@ You can use prebuilt images generated by our CI workflow by downloading the dock
9179 - Windows Machine
9280
9381 ```
94- curl.exe -o crapi.zip https://github.com/OWASP/crAPI/archive/refs/heads/develop.zip
95-
82+ curl.exe -L -o crapi.zip https://github.com/OWASP/crAPI/archive/refs/heads/develop.zip
9683 tar -xf .\crapi.zip
97-
9884 cd crAPI-develop/deploy/docker
99-
10085 docker compose pull
101-
10286 docker compose -f docker-compose.yml --compatibility up -d
10387 ```
10488
0 commit comments