Skip to content

Commit 624b770

Browse files
Update version to 0.6.20 (#327)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 0c9fddc commit 624b770

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

getting-started/deployment/local.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ If you can't use the autoinstall script, follow the manual installation steps fo
3030
2. Open a new terminal window and run the following command to create a folder and download the OpenOps release files:
3131
```shell
3232
mkdir -p openops && cd openops && \
33-
curl -OL https://github.com/openops-cloud/openops/releases/download/0.6.19/openops-dc-0.6.19.zip && \
34-
unzip openops-dc-0.6.19.zip && cp -n .env.defaults .env
33+
curl -OL https://github.com/openops-cloud/openops/releases/download/0.6.20/openops-dc-0.6.20.zip && \
34+
unzip openops-dc-0.6.20.zip && cp -n .env.defaults .env
3535
```
3636
3. <UpdateCredentials/>
3737
4. Pull the images and run `docker compose`:
@@ -55,13 +55,13 @@ You can now access the application by navigating to http://localhost.
5555
# create and change directory
5656
mkdir -p openops && cd openops
5757
# download the release file
58-
curl -OL https://github.com/openops-cloud/openops/releases/download/0.6.19/openops-dc-0.6.19.zip
58+
curl -OL https://github.com/openops-cloud/openops/releases/download/0.6.20/openops-dc-0.6.20.zip
5959
# refresh package lists
6060
sudo apt update
6161
# install unzip
6262
sudo apt install unzip
6363
# decompress release file
64-
unzip openops-dc-0.6.19.zip
64+
unzip openops-dc-0.6.20.zip
6565
# copy the defaults to env without overwriting existing files
6666
cp --update=none .env.defaults .env
6767
```
@@ -100,8 +100,8 @@ You can now access the application by navigating to http://localhost.
100100
```
101101
3. Download the OpenOps release files:
102102
```powershell
103-
Invoke-WebRequest -Uri "https://github.com/openops-cloud/openops/releases/download/0.6.19/openops-dc-0.6.19.zip"
104-
Expand-Archive -Path "openops-dc-0.6.19.zip" -DestinationPath .
103+
Invoke-WebRequest -Uri "https://github.com/openops-cloud/openops/releases/download/0.6.20/openops-dc-0.6.20.zip"
104+
Expand-Archive -Path "openops-dc-0.6.20.zip" -DestinationPath .
105105
if (-Not (Test-Path ".env")) {
106106
Copy-Item ".env.defaults" ".env"
107107
}

getting-started/updating-openops.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ The script will stop all running containers, pull the latest images, and restart
2828
```
2929
4. Download and extract the new version:
3030
```shell
31-
curl -OL https://github.com/openops-cloud/openops/releases/download/0.6.19/openops-dc-0.6.19.zip && \
32-
unzip -o openops-dc-0.6.19.zip
31+
curl -OL https://github.com/openops-cloud/openops/releases/download/0.6.20/openops-dc-0.6.20.zip && \
32+
unzip -o openops-dc-0.6.20.zip
3333
```
3434
(This code sample refers to a specific version. Don't forget to update it to the version you're installing.)
3535
5. Fetch the new images and restart the application:

snippets/manual-install.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ Alternatively, you can follow the manual installation steps:
1010
2. Create a new directory and download the OpenOps release files:
1111
```shell
1212
mkdir -p openops && cd openops && \
13-
wget https://github.com/openops-cloud/openops/releases/download/0.6.19/openops-dc-0.6.19.zip && \
14-
unzip -o openops-dc-0.6.19.zip && cp -n .env.defaults .env
13+
wget https://github.com/openops-cloud/openops/releases/download/0.6.20/openops-dc-0.6.20.zip && \
14+
unzip -o openops-dc-0.6.20.zip && cp -n .env.defaults .env
1515
```
1616
3. Update the application URL to use the instance's external IP address:
1717
```shell

0 commit comments

Comments
 (0)