How to upgrade hyperDX Docker container?
We currently don’t have any documented upgrade steps when a new HyperDX release is available. Could you please provide the steps to upgrade the existing HyperDX Docker container?
docker run -d --name hyperdx -p 8080:8080 -p 4317:4317 -p 4318:4999 -e HYPERDX_API_URL=http://test123 -e SERVER_URL=http://test123 -e HYPERDX_APP_URL=http://test123 -e NEXT_PUBLIC_SERVER_URL=http://test123 hyperdx/hyperdx-all-in-one:latest
Hi @nareshntr, thanks for reaching out.
To upgrade to a new latest version, you'll want to stop your running container and then run
docker pull hyperdx/hyperdx-all-in-one:latest
After that, if you re-run your docker run command, the latest version should start.
NOTE: Data and settings will not be persisted when upgrading unless you have set up volume mounts to persist your data. Also note that the all-in-one image is intended for demos and local testing, and that there are other deployment options more suitable for production deployments.
Please let me know if this solves your issue.