Dockr Image with Nexus build on top of official CentOS-7 image.
Too build just type:
docker build -t million12/nexus .
Too run container:
docker run \
--name nexus \
-p 8081:8081 \
million12/nexus
| Tool | Link | Credentials |
|---|---|---|
| Nexus | http://${docker-machine ip default}:8081/nexus | admin/admin123 |
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: 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.
Content type
Image
Digest
Size
204.9 MB
Last updated
over 10 years ago
docker pull million12/nexus