From d0acd18f41d79623e015da86ba54f4f485ca4381 Mon Sep 17 00:00:00 2001 From: Eva Myers <81232948+emyers-ccdc@users.noreply.github.com> Date: Tue, 10 Mar 2026 16:00:42 +0000 Subject: [PATCH 1/3] NO_JIRA maintenance tool for updates and uninstalls --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b16156d..19aa0cf 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,7 @@ - [Updates](#updates) - [Installer](#installer) - [Manual Updates](#manual-updates) +- [Uninstallation](#uninstallation) - [Known Issues](#known-issues) - [Restart the message queue](#restart-the-message-queue) - [Contacting Support](#contacting-support) @@ -334,7 +335,9 @@ docker compose -f docker-compose.yml -f docker-compose.ssl.yml -f docker-compose ### Installer -To update your installation, re-run the maintenance tool and select the same installation folder. +To update your installation, run the maintenance tool and select "Update components". + +Or re-run the installer and select the same installation folder. Click Ok when a warning message pops up. This will automatically pull the latest versions of all containers and restart the stack. @@ -356,6 +359,10 @@ docker compose -f docker-compose.yml -f docker-compose.ssl.yml -f docker-compose Now from lattice -> database management, reimport your in-house databases. +## Uninstallation + +To uninstall On-Site WebCSD run the GUI maintenance tool and select "Remove all components". Or run it from the command line with the `purge` option. + ## Known Issues ### Restart the message queue From be5d9835f3cf258522f4b24f3aa2e0a8203ebeee Mon Sep 17 00:00:00 2001 From: Eva Myers <81232948+emyers-ccdc@users.noreply.github.com> Date: Tue, 10 Mar 2026 16:20:16 +0000 Subject: [PATCH 2/3] Full maintenance tool commands NO_JIRA --- README.md | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 19aa0cf..678b751 100644 --- a/README.md +++ b/README.md @@ -335,13 +335,16 @@ docker compose -f docker-compose.yml -f docker-compose.ssl.yml -f docker-compose ### Installer -To update your installation, run the maintenance tool and select "Update components". - -Or re-run the installer and select the same installation folder. -Click Ok when a warning message pops up. +To update your installation, run the maintenance tool and select "Update components". Click Ok when a warning message pops up. This will automatically pull the latest versions of all containers and restart the stack. -For major releases a new database dump file is shipped. The installer will prompt for the location. It will then overwrite the csd database volume with the update, please export any in-house databases beforehand. Once the update has completed they will need to be reimported within lattice -> database management. +For major releases a new database dump file is shipped. The maintenance tool will prompt for the location. It will then overwrite the csd database volume with the update, please export any in-house databases beforehand. Once the update has completed they will need to be reimported within lattice -> database management. + +To update from the command line: + +```sh +./maintenancetool update dbDumpFile="" overwriteDb="True" +``` Contact CCDC Support for the latest download link. @@ -363,6 +366,10 @@ Now from lattice -> database management, reimport your in-house databases. To uninstall On-Site WebCSD run the GUI maintenance tool and select "Remove all components". Or run it from the command line with the `purge` option. +```sh +./maintenancetool purge +``` + ## Known Issues ### Restart the message queue From d65ee9fcf960c2fc30ea55693cb7b3c2a8a80b54 Mon Sep 17 00:00:00 2001 From: Eva Myers <81232948+emyers-ccdc@users.noreply.github.com> Date: Tue, 10 Mar 2026 16:35:09 +0000 Subject: [PATCH 3/3] NO_JIRA fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 678b751..c4c3aa8 100644 --- a/README.md +++ b/README.md @@ -343,7 +343,7 @@ For major releases a new database dump file is shipped. The maintenance tool wil To update from the command line: ```sh -./maintenancetool update dbDumpFile="" overwriteDb="True" +./maintenancetool update dbDumpFile="" overWriteDb="True" ``` Contact CCDC Support for the latest download link.