Created
December 14, 2017 14:36
-
-
Save stepankuzmin/c0d34f266f5b02bb9ecfb3b77b7776ba to your computer and use it in GitHub Desktop.
Docker with host network
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
| docker run -d \ | |
| --name studio \ | |
| --restart=always \ | |
| --network="host" \ | |
| --add-host 10.10.42.2:10.10.42.2 \ | |
| -p 3000:3000 \ | |
| -v $(pwd):/root \ | |
| stepankuzmin/mapbox-studio-classic |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment