Skip to content

Commit 5a35e04

Browse files
committed
fix commands for Windows
1 parent 1fe700e commit 5a35e04

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/setup.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ $ docker-machine create --driver ddcloud \
148148
On Windows just remove the backslashes so the whole command is on a single line.
149149

150150
```
151-
> docker-machine create --driver ddcloud --ddcloud-region EU --ddcloud-datacenter EU6 --ddcloud-networkdomain 'DockerMachineFox' --ddcloud-vlan 'DockerMachineNetwork' --ddcloud-ssh-key ~/.ssh/id_rsa mcp-eu6-01
151+
C:\>docker-machine create --driver ddcloud --ddcloud-region EU --ddcloud-datacenter EU6 --ddcloud-networkdomain 'DockerMachineFox' --ddcloud-vlan 'DockerMachineNetwork' --ddcloud-ssh-key ~/.ssh/id_rsa mcp-eu6-01
152152
```
153153
You can check the IP address of the new host, and locate security artifacts, with following command.
154154

@@ -175,7 +175,7 @@ $ eval $(docker-machine env mcp-eu6-01)
175175
On Windows you may have to use following command instead:
176176

177177
```
178-
>@FOR /f "tokens=*" %i IN ('docker-machine env mcp-eu6-01') DO @%i
178+
C:\>@FOR /f "tokens=*" %i IN ('docker-machine env mcp-eu6-01') DO @%i
179179
```
180180

181181
As an example, let's try running the official Nginx container:
@@ -241,7 +241,7 @@ $ eval $(docker-machine env mcp-eu6-02)
241241
And on Windows:
242242

243243
```
244-
>@FOR /f "tokens=*" %i IN ('docker-machine env mcp-eu6-02') DO @%i
244+
C:\>@FOR /f "tokens=*" %i IN ('docker-machine env mcp-eu6-02') DO @%i
245245
```
246246

247247
## How to execute commands on the host?

0 commit comments

Comments
 (0)