how to install nginx on vbox on windows 10
C:\Users\helmut>docker-machine env default SET DOCKER_TLS_VERIFY=1 SET DOCKER_HOST=tcp://192.168.99.100:2376 SET DOCKER_CERT_PATH=C:\Users\helmut\.docker\machine\machines\default SET DOCKER_MACHINE_NAME=default SET COMPOSE_CONVERT_WINDOWS_PATHS=true REM Run this command to configure your shell: REM @FOR /f "tokens=*" %i IN ('docker-machine env default') DO @%i
Here is what the above code is Doing:
1. It’s creating a new Docker machine called default.
2. It’s setting the environment variables for the default machine.
3. It’s running the command to configure your shell.