@@ -27,8 +27,8 @@ If you can't use the autoinstall script, follow the manual installation steps fo
27272 . Open a new terminal window and run the following command to create a folder and download the OpenOps release files:
2828 ``` shell
2929 mkdir -p openops && cd openops && \
30- curl -OL https://github.com/openops-cloud/openops/releases/download/0.5.1 /openops-dc-0.5.1 .zip && \
31- unzip openops-dc-0.5.1 .zip && cp -n .env.defaults .env
30+ curl -OL https://github.com/openops-cloud/openops/releases/download/0.5.2 /openops-dc-0.5.2 .zip && \
31+ unzip openops-dc-0.5.2 .zip && cp -n .env.defaults .env
3232 ```
33333 . <UpdateCredentials />
34344 . Pull the images and run ` docker compose ` :
@@ -52,13 +52,13 @@ You can now access the application by navigating to http://localhost.
5252 # create and change directory
5353 mkdir -p openops && cd openops
5454 # download the release file
55- curl -OL https://github.com/openops-cloud/openops/releases/download/0.5.1 /openops-dc-0.5.1 .zip
55+ curl -OL https://github.com/openops-cloud/openops/releases/download/0.5.2 /openops-dc-0.5.2 .zip
5656 # refresh package lists
5757 sudo apt update
5858 # install unzip
5959 sudo apt install unzip
6060 # decompress release file
61- unzip openops-dc-0.5.1 .zip
61+ unzip openops-dc-0.5.2 .zip
6262 # copy the defaults to env without overwriting existing files
6363 cp --update=none .env.defaults .env
6464 ```
@@ -97,8 +97,8 @@ You can now access the application by navigating to http://localhost.
9797 ```
98983 . Download the OpenOps release files:
9999 ``` powershell
100- Invoke-WebRequest -Uri "https://github.com/openops-cloud/openops/releases/download/0.5.1 /openops-dc-0.5.1 .zip"
101- Expand-Archive -Path "openops-dc-0.5.1 .zip" -DestinationPath .
100+ Invoke-WebRequest -Uri "https://github.com/openops-cloud/openops/releases/download/0.5.2 /openops-dc-0.5.2 .zip"
101+ Expand-Archive -Path "openops-dc-0.5.2 .zip" -DestinationPath .
102102 if (-Not (Test-Path ".env")) {
103103 Copy-Item ".env.defaults" ".env"
104104 }
0 commit comments