Created
November 15, 2019 22:33
-
-
Save ripper2hl/f768fa89499444be9951c4d4308d6849 to your computer and use it in GitHub Desktop.
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