We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7093c31 commit 0cb8d16Copy full SHA for 0cb8d16
README.md
@@ -107,10 +107,12 @@ Start a container with the name `builder` from the cross-compilation image `unif
107
108
```bash
109
docker run --name builder -it -v $(pwd):/workdir unifmu-build # bash
110
-docker run --name builder -it -v %cd%:/workdir unifmu-build # windows cmd
111
```
112
113
-Sharing the source between the host and container, `unifmu-build`, is done using a volume as indicated by the `$(pwd):/workdir`.
+```powershell
+$pwd = (pwd).Path
114
+docker run --name builder -it -v ${pwd}:/workdir unifmu-build # powershell
115
+```
116
117
**Note: On windows you may have to enable the use of shared folders through the dockers interface, otherwise the container fails to start.**
118
0 commit comments