Last active
October 2, 2018 11:17
-
-
Save davidisnotnull/035af7b752b6b6690d0098f84a8ec982 to your computer and use it in GitHub Desktop.
Docker commands for Windows
This file contains hidden or 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
#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