This stack deploys Sonatype Nexus.
None
docker stack deploy -c nexus.yml nexus
Wait until Nexus is running. The status can be checked with the command docker stack ps nexus
.
curl -u admin:admin123 \
http://localhost:8081/service/metrics/ping
This stack deploys Sonatype Nexus integrated with Docker Flow Proxy.
- Network called
proxy
is created - Docker Flow Proxy is running
docker network create --driver overlay proxy
docker stack deploy \
-c ../proxy/docker-flow-proxy.yml \
proxy
DOMAIN=localhost \
docker stack deploy \
-c nexus-df-proxy.yml \
nexus
Wait until Nexus service and the process are running. The status of the service can be checked with the command docker stack ps nexus
. To confirm whether the nexus process is running, please execute docker service logs nexus_main
.
curl -u admin:admin123 \
http://localhost/service/metrics/ping