LogoLogo
umh-core
umh-core
  • Introduction
  • Getting Started
  • Usage
    • Unified Namespace
      • Overview
      • Payload Formats
      • Topic Convention
      • Producing Data
      • Consuming Data
    • Data Flows
      • Overview
      • Bridges
      • Stand-alone Flow
      • Stream Processor 🚧
    • Data Modeling 🚧
      • Data Models 🚧
      • Data Contracts 🚧
      • Stream Processors 🚧
  • Production
    • Updating
    • Sizing Guide
    • Corporate Firewalls
    • Metrics
    • Migration from Classic
  • Reference
    • Configuration Reference
    • Container Layout
    • State Machines
    • Environment Variables
  • UMH Core vs UMH Classic
  • UMH Classic
    • Go To Documentation
  • Ressources
    • Website
    • Blog
Powered by GitBook
On this page
  1. Production

Updating

PreviousProductionNextSizing Guide

Last updated 5 days ago

To update umh-core, simply stop the container, pull the latest image, and start the container again.

# stop + delete the old container (data is preserved)
sudo docker stop umh-core
sudo docker rm umh-core

# pull the latest image and re-create
sudo docker run -d \
  --name umh-core \
  --restart unless-stopped \
  -v "$(pwd)/umh-core-data":/data \
  management.umh.app/oci/united-manufacturing-hub/umh-core:<NEW_VERSION>

Need to roll back? Just start the previous tag against the same /data volume.

You can find the latest version on the page.

Releases