From c67a5b22becf94d555dbe8f843da2bec019f2c27 Mon Sep 17 00:00:00 2001 From: M4th12 <89078127+M4th12@users.noreply.github.com> Date: Sun, 31 May 2026 21:44:31 +0200 Subject: [PATCH] Revise upgrade instructions for OpenCloud Updated commands and instructions for pulling OpenCloud images and running containers. --- docs/admin/maintenance/upgrade/upgrade.md | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/docs/admin/maintenance/upgrade/upgrade.md b/docs/admin/maintenance/upgrade/upgrade.md index 41555bca..111a49e7 100644 --- a/docs/admin/maintenance/upgrade/upgrade.md +++ b/docs/admin/maintenance/upgrade/upgrade.md @@ -37,19 +37,19 @@ It is recommended to create a [backup](../backup) before proceeding with the upg ## Pull the latest OpenCloud Compose -If you are using Docker Compose with the `opencloud-compose` repository, update your local checkout before pulling the new container image: +If you are using Docker Compose with the `opencloud-compose` repository, update your local checkout before pulling the new container image. + +Skip this step if you run OpenCloud with plain Docker (`docker run`): ```bash cd /opencloud-compose git pull ``` -Skip this step if you run OpenCloud with plain Docker (`docker run`). - ## Pull the new Opencloud version ```bash -docker pull opencloudeu/opencloud:{tag} +docker pull opencloudeu/opencloud-rolling:{tag} # or opencloudeu/opencloud:{tag} depending on the version you're using ``` ## Verify Configuration Changes @@ -59,7 +59,8 @@ If upgrading from an older release, check for required configuration changes: Go inside the container: ```bash -docker run --rm -it --entrypoint /bin/sh -v $HOME/opencloud/opencloud-config:/etc/opencloud opencloudeu/opencloud:{tag} +docker run --rm -it --entrypoint /bin/sh -v /YOUR/OC_CONFIG/PATH:/etc/opencloud opencloudeu/opencloud-rolling:{tag} +# or opencloudeu/opencloud:{tag} depending on the version you're using ``` ```bash @@ -85,12 +86,12 @@ If you see `no changes, your config is up to date`, no further action is needed. -e OC_INSECURE=true \ -e PROXY_HTTP_ADDR=0.0.0.0:9200 \ -e OC_URL=https://localhost:9200 \ - opencloudeu/opencloud:{tag} + opencloudeu/opencloud-rolling:{tag} ``` ```Shell - OC_DOCKER_IMAGE=opencloudeu/opencloud OC_DOCKER_TAG=tag docker compose up -d + docker compose up -d ```