Sign inSign up

million12/nexus

By million12

Updated over 10 years ago

Nexus (CentOS 7)

Image
1

10K+

million12/nexus repository overview

docker-nexus

CircleCI Build Status GitHub Open Issues GitHub Stars GitHub Forks
Stars on Docker Hub Pulls on Docker Hub
Docker Layers

Dockr Image with Nexus build on top of official CentOS-7 image.

Build

Too build just type:

docker build -t million12/nexus .  
Run

Too run container:

docker run \
--name nexus \
-p 8081:8081 \
million12/nexus
Access web-interface
ToolLinkCredentials
Nexushttp://${docker-machine ip default}:8081/nexusadmin/admin123
Docker troubleshooting

Use docker command to see if all required containers are up and running:

$ docker ps -a

Check online logs of nexus container:

$ docker logs nexus

Attach to running nexus container (to detach the tty without exiting the shell, use the escape sequence Ctrl+p + Ctrl+q):

$ docker attach nexus

Sometimes you might just want to review how things are deployed inside a running container, you can do this by executing a bash shell through docker's exec command:

docker exec -i -t nexus /bin/bash

History of an image and size of layers:

docker history --no-trunc=true million12/nexus | tr -s ' ' | tail -n+2 | awk -F " ago " '{print $2}'

Author

Author: Przemyslaw Ozgo [email protected]

Licensed under: The MIT License (MIT)

Sponsored by PrototypeBrewery.io - the new prototyping tool for building fully interactive prototypes of your website or web app. Built on top of Neos CMS and Zurb Foundation framework.

Tag summary

Content type

Image

Digest

Size

204.9 MB

Last updated

over 10 years ago

docker pull million12/nexus