@@ -27,8 +27,8 @@ If you can't use the autoinstall script, follow the manual installation steps fo
27
27
2 . Open a new terminal window and run the following command to create a folder and download the OpenOps release files:
28
28
``` shell
29
29
mkdir -p openops && cd openops && \
30
- curl -OL https://github.com/openops-cloud/openops/releases/download/0.5.0 /openops-dc-0.5.0 .zip && \
31
- unzip openops-dc-0.5.0 .zip && cp -n .env.defaults .env
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
32
32
```
33
33
3 . <UpdateCredentials />
34
34
4 . Pull the images and run ` docker compose ` :
@@ -52,13 +52,13 @@ You can now access the application by navigating to http://localhost.
52
52
# create and change directory
53
53
mkdir -p openops && cd openops
54
54
# download the release file
55
- curl -OL https://github.com/openops-cloud/openops/releases/download/0.5.0 /openops-dc-0.5.0 .zip
55
+ curl -OL https://github.com/openops-cloud/openops/releases/download/0.5.1 /openops-dc-0.5.1 .zip
56
56
# refresh package lists
57
57
sudo apt update
58
58
# install unzip
59
59
sudo apt install unzip
60
60
# decompress release file
61
- unzip openops-dc-0.5.0 .zip
61
+ unzip openops-dc-0.5.1 .zip
62
62
# copy the defaults to env without overwriting existing files
63
63
cp --update=none .env.defaults .env
64
64
```
@@ -97,8 +97,8 @@ You can now access the application by navigating to http://localhost.
97
97
```
98
98
3 . Download the OpenOps release files:
99
99
``` powershell
100
- Invoke-WebRequest -Uri "https://github.com/openops-cloud/openops/releases/download/0.5.0 /openops-dc-0.5.0 .zip"
101
- Expand-Archive -Path "openops-dc-0.5.0 .zip" -DestinationPath .
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 .
102
102
if (-Not (Test-Path ".env")) {
103
103
Copy-Item ".env.defaults" ".env"
104
104
}
0 commit comments