Before you proceed, see System Requirements for information on supported platforms, supported browsers, and other requirements.
In addition, review the Docker requirements.
Note
The Docker upgrade only applies when upgrading from Artifactory 6.x to Artifactory 7.4.1 and above.
Stop and remove Artifactory using native Docker commands.
docker stop artifactory docker rm -f artifactory
Set the path to your current Artifactory home, and make sure the directory permissions are set correctly.
export ARTIFACTORY_HOME=<Mount Path to your current Artifactory data directory> chown -R 1030:1030 $ARTIFACTORY_HOME
Start the Artifactory container
docker run -e ENABLE_MIGRATION=y --name artifactory -v $ARTIFACTORY_HOME:/var/opt/jfrog/artifactory -d -p 8081:8081 -p 8082:8082 releases-docker.jfrog.io/jfrog/artifactory-<pro|oss|cpp-ce>:latest
Access Artifactory from your browser at:
http://SERVER_HOSTNAME:8082/ui/.For example, on your local machine:
http://localhost:8082/ui/.Check Artifactory Log.
docker logs -f artifactory