Skip to content

Instantly share code, notes, and snippets.

@ripper2hl
Created November 15, 2019 22:33
Show Gist options
  • Save ripper2hl/f768fa89499444be9951c4d4308d6849 to your computer and use it in GitHub Desktop.
Save ripper2hl/f768fa89499444be9951c4d4308d6849 to your computer and use it in GitHub Desktop.
Create a nexus server with docker
#!/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