Dockerized Nexus Repository Manager based on official sonartype/nexus3
8.3K
Nexus is an open source repository manager which enables the management of various package formats.
The Dockerfile builds from "sonatype/nexus3" and "nginx" images see:
The nginx container stands as a Reverse proxy/SSL Terminator to Nexus in order route request to the docker registry based on the user-agent.
/etc/nginx/ssl/nginx.crt|nginx.keyFirst run the nexus container
docker run -d --name="nexus" -p 8081:8081 -p 5000:5000 fjudith/nexus
Then run the nginx container
docker run -it --name="nexus-nginx" --link nexus:nexus -p 80:80 -p 443:443 fjudith/nexus:nginx
Start a web browser session to http://ip or htts://ip
falsedraw.example.comCloud Native Applicationexample incParisParisFRContent type
Image
Digest
Size
224.6 MB
Last updated
over 7 years ago
docker pull fjudith/nexus