Skip to content

Instantly share code, notes, and snippets.

@davidisnotnull
Last active October 2, 2018 11:17
Show Gist options
  • Save davidisnotnull/035af7b752b6b6690d0098f84a8ec982 to your computer and use it in GitHub Desktop.
Save davidisnotnull/035af7b752b6b6690d0098f84a8ec982 to your computer and use it in GitHub Desktop.
Docker commands for Windows
#Sourcegraph
docker pull sourcegraph/server
docker run -p 7080:7080 sourcegraph/server
It is then accessible on 127.0.0.1:7080
#Sonarqube
docker pull sonarqube
docker run -p 9000:9000 -p 9092:9092 sonarqube
Is is then accessible on 127.0.0.1:9000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment