You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,6 +30,8 @@ $ go get github.com/docker-exec/dexec
30
30
31
31
These examples use a .cpp source file, but any of the supported languages can be used instead. Arguments can be passed in any order, using any style of the acceptable switch styles described.
32
32
33
+
If you are using boot2docker by default the only paths that can be mounted are in the operating system's users directory. See Docker's page on [managing data in containers](https://docs.docker.com/userguide/dockervolumes/#mount-a-host-directory-as-a-data-volume) for more information.
34
+
33
35
The application provides help and version information as follows:
34
36
35
37
```sh
@@ -76,6 +78,12 @@ By default, ```dexec``` assumes the sources are in the directory from which it i
76
78
$ dexec -C /path/to/sources foo.cpp bar.cpp
77
79
```
78
80
81
+
Use the following form on Windows (as opposed to /c/path/to/sources):
82
+
83
+
```sh
84
+
$ dexec -C C:\path\to\sources foo.cpp bar.cpp
85
+
```
86
+
79
87
### Include files and folders mounted in Docker container
80
88
81
89
Individual files can be mounted without being passed to the compiler, for example header files in C & C++, or input files for program execution. These can be included in the following way.
0 commit comments