Create a nexus server with docker
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
mkdir nexus && cd nexus | |
mkdir nexus-data | |
sudo chown -R 200 nexus-data | |
docker run -d -p 8081:8081 --name nexus -v nexus-data:/nexus-data sonatype/nexus3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment