diff --git a/getting-started/deployment/local.mdx b/getting-started/deployment/local.mdx index 04573fb..7cbeb86 100644 --- a/getting-started/deployment/local.mdx +++ b/getting-started/deployment/local.mdx @@ -30,8 +30,8 @@ If you can't use the autoinstall script, follow the manual installation steps fo 2. Open a new terminal window and run the following command to create a folder and download the OpenOps release files: ```shell mkdir -p openops && cd openops && \ - curl -OL https://github.com/openops-cloud/openops/releases/download/0.6.24/openops-dc-0.6.24.zip && \ - unzip openops-dc-0.6.24.zip && cp -n .env.defaults .env + curl -OL https://github.com/openops-cloud/openops/releases/download/0.6.25/openops-dc-0.6.25.zip && \ + unzip openops-dc-0.6.25.zip && cp -n .env.defaults .env ``` 3. 4. Pull the images and run `docker compose`: @@ -55,13 +55,13 @@ You can now access the application by navigating to http://localhost. # create and change directory mkdir -p openops && cd openops # download the release file - curl -OL https://github.com/openops-cloud/openops/releases/download/0.6.24/openops-dc-0.6.24.zip + curl -OL https://github.com/openops-cloud/openops/releases/download/0.6.25/openops-dc-0.6.25.zip # refresh package lists sudo apt update # install unzip sudo apt install unzip # decompress release file - unzip openops-dc-0.6.24.zip + unzip openops-dc-0.6.25.zip # copy the defaults to env without overwriting existing files cp --update=none .env.defaults .env ``` @@ -100,8 +100,8 @@ You can now access the application by navigating to http://localhost. ``` 3. Download the OpenOps release files: ```powershell - Invoke-WebRequest -Uri "https://github.com/openops-cloud/openops/releases/download/0.6.24/openops-dc-0.6.24.zip" - Expand-Archive -Path "openops-dc-0.6.24.zip" -DestinationPath . + Invoke-WebRequest -Uri "https://github.com/openops-cloud/openops/releases/download/0.6.25/openops-dc-0.6.25.zip" + Expand-Archive -Path "openops-dc-0.6.25.zip" -DestinationPath . if (-Not (Test-Path ".env")) { Copy-Item ".env.defaults" ".env" } diff --git a/getting-started/updating-openops.mdx b/getting-started/updating-openops.mdx index 007130d..bb37f12 100644 --- a/getting-started/updating-openops.mdx +++ b/getting-started/updating-openops.mdx @@ -28,8 +28,8 @@ The script will stop all running containers, pull the latest images, and restart ``` 4. Download and extract the new version: ```shell - curl -OL https://github.com/openops-cloud/openops/releases/download/0.6.24/openops-dc-0.6.24.zip && \ - unzip -o openops-dc-0.6.24.zip + curl -OL https://github.com/openops-cloud/openops/releases/download/0.6.25/openops-dc-0.6.25.zip && \ + unzip -o openops-dc-0.6.25.zip ``` (This code sample refers to a specific version. Don't forget to update it to the version you're installing.) 5. Fetch the new images and restart the application: diff --git a/snippets/manual-install.mdx b/snippets/manual-install.mdx index 3729fa1..251662e 100644 --- a/snippets/manual-install.mdx +++ b/snippets/manual-install.mdx @@ -10,8 +10,8 @@ Alternatively, you can follow the manual installation steps: 2. Create a new directory and download the OpenOps release files: ```shell mkdir -p openops && cd openops && \ - wget https://github.com/openops-cloud/openops/releases/download/0.6.24/openops-dc-0.6.24.zip && \ - unzip -o openops-dc-0.6.24.zip && cp -n .env.defaults .env + wget https://github.com/openops-cloud/openops/releases/download/0.6.25/openops-dc-0.6.25.zip && \ + unzip -o openops-dc-0.6.25.zip && cp -n .env.defaults .env ``` 3. Update the application URL to use the instance's external IP address: ```shell