Skip to content

Instantly share code, notes, and snippets.

@ripper2hl
Created November 15, 2019 22:33
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
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