With icescrum.jar
- Stop your server (you can check that the process is really stopped)
- Backup your database
- Replace icescrum.jar by the new one
- Start your server
If you come across any issue, have a look at the troubleshooting documentation.
With your own Tomcat server
- Stop your server (you can check that the process is really stopped)
- Backup your database
- Replace the icescrum.war file (or your custom named war file) under $CATALINA_BASE/webapps by the new one
- Delete the icescrum directory (or your custom named directory) under $CATALINA_BASE/webapps directory
- Delete Catalina directory under $CATALINA_BASE/work directory
- Start your server
If you come across any issue, have a look at the troubleshooting documentation.
With Docker
Since no data is stored in the container, you can update to the latest image by using Docker pull and replacing your old container (named icescrum in the example below) by a new one using the newly pulled image.
- docker pull icescrum/icescrum
- docker stop icescrum
- docker rm icescrum
- docker run …
For more information about the Docker image, read the documentation.