Created
February 5, 2014 09:28
-
-
Save neeravkumar/8820016 to your computer and use it in GitHub Desktop.
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
| # dvm configuration | |
| # ----------------- | |
| # | |
| # **Note**: All commented out settings are default values | |
| # | |
| # Docker guest IP address, available on a private network | |
| # | |
| export DOCKER_IP="10.1.2.3" | |
| # TCP port on Docker guest | |
| # | |
| #export DOCKER_PORT="4243" | |
| # Amount of RAM to dedicate to the virtual machine, in megabytes | |
| # | |
| export DOCKER_MEMORY="2048" | |
| # Arguments passed to start the Docker daemon. Note that `-d' is assumed and | |
| # not to be included | |
| # | |
| export DOCKER_ARGS="-dns 8.8.8.8 -dns 8.8.4.4 -H unix:///var/run/docker.sock -H tcp://0.0.0.0:$DOCKER_PORT" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment