Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions getting-started/deployment/aws-ec2.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ Alternatively, you can follow the manual installation steps:
2. In CloudShell, create a new directory and download the release files:
```shell
mkdir -p openops && cd openops && \
wget https://github.com/openops-cloud/openops/releases/download/0.4.3/openops-dc-0.4.3.zip && \
unzip -o openops-dc-0.4.3.zip && cp --update=none .env.defaults .env
wget https://github.com/openops-cloud/openops/releases/download/0.4.4/openops-dc-0.4.4.zip && \
unzip -o openops-dc-0.4.4.zip && cp --update=none .env.defaults .env
```
3. Update the application URL to use the instance's public IP address:
```shell
Expand Down
4 changes: 2 additions & 2 deletions getting-started/deployment/azure-vm.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,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.4.3/openops-dc-0.4.3.zip && \
unzip -o openops-dc-0.4.3.zip && cp -n .env.defaults .env
wget https://github.com/openops-cloud/openops/releases/download/0.4.4/openops-dc-0.4.4.zip && \
unzip -o openops-dc-0.4.4.zip && cp -n .env.defaults .env
```
3. Edit the application URL to use the machine’s public IP address:
```shell
Expand Down
4 changes: 2 additions & 2 deletions getting-started/deployment/gcp-vm.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ Alternatively, you can follow the manual installation steps:
2. In your SSH session, create a new directory and download the release files:
```shell
mkdir -p openops && cd openops
wget https://github.com/openops-cloud/openops/releases/download/0.4.3/openops-dc-0.4.3.zip
unzip -o openops-dc-0.4.3.zip
wget https://github.com/openops-cloud/openops/releases/download/0.4.4/openops-dc-0.4.4.zip
unzip -o openops-dc-0.4.4.zip
cp -u .env.defaults .env
```
3. Update the application URL to use the instance’s external IP address:
Expand Down
12 changes: 6 additions & 6 deletions getting-started/deployment/local.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,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.4.3/openops-dc-0.4.3.zip && \
unzip openops-dc-0.4.3.zip && cp -n .env.defaults .env
curl -OL https://github.com/openops-cloud/openops/releases/download/0.4.4/openops-dc-0.4.4.zip && \
unzip openops-dc-0.4.4.zip && cp -n .env.defaults .env
```
3. <UpdateCredentials/>
4. Pull the images and run `docker compose`:
Expand All @@ -52,13 +52,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.4.3/openops-dc-0.4.3.zip
curl -OL https://github.com/openops-cloud/openops/releases/download/0.4.4/openops-dc-0.4.4.zip
# refresh package lists
sudo apt update
# install unzip
sudo apt install unzip
# decompress release file
unzip openops-dc-0.4.3.zip
unzip openops-dc-0.4.4.zip
# copy the defaults to env without overwriting existing files
cp --update=none .env.defaults .env
```
Expand Down Expand Up @@ -97,8 +97,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.4.3/openops-dc-0.4.3.zip"
Expand-Archive -Path "openops-dc-0.4.3.zip" -DestinationPath .
Invoke-WebRequest -Uri "https://github.com/openops-cloud/openops/releases/download/0.4.4/openops-dc-0.4.4.zip"
Expand-Archive -Path "openops-dc-0.4.4.zip" -DestinationPath .
if (-Not (Test-Path ".env")) {
Copy-Item ".env.defaults" ".env"
}
Expand Down
4 changes: 2 additions & 2 deletions getting-started/updating-openops.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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.4.3/openops-dc-0.4.3.zip && \
unzip -o openops-dc-0.4.3.zip
curl -OL https://github.com/openops-cloud/openops/releases/download/0.4.4/openops-dc-0.4.4.zip && \
unzip -o openops-dc-0.4.4.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:
Expand Down