Updating

To update umh-core, stop the container and start a new one with the latest image.

docker stop umh-core
docker rm umh-core

docker run -d \
  --name umh-core \
  --restart unless-stopped \
  -v umh-core-data:/data \
  management.umh.app/oci/united-manufacturing-hub/umh-core:<NEW_VERSION>

That's it! Your data is preserved in the umh-core-data volume.

Note: On Linux without Docker group membership, prefix commands with sudo.

Rollback

Need to roll back? Start the previous version against the same volume.

Releases

Find the latest version on the Releasesarrow-up-right page.


Using a custom data folder? If you manually specified a folder path instead of using a Docker volume, see Container Layout for upgrade instructions.

Last updated