So I have a local host volume mount that consists of all config, storage and logs for a dockerized Nexus 3.15.2. I'm trying to upgrade to Dockerized Nexus 3.16.1.
The steps I'm performing are the following:
- docker stop nexus 3.15.2
- docker run -d -p 8081:8081 --name nexus -v /usr/local/nexus-data:/nexus-data sonatype/nexus3 (to start up the latest docker, the mount is using the pre-existing mount that 3.15.2 was using)
- Verify Nexus UI is up and running.
Nexus is up and running but its still using 3.15.2, I'm assuming there are files that are referencing 3.15.2 that are taking precedence over what the version of the new container is using (in this case 3.16.1)
Is there some sort of guide as to what needs to be replaced on the local host mount or is there a another procedure to migrate from a dockerized 3.15.2 to a dockerized 3.16.1?
Thanks in advance