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
The example folder `/home/user/example` will be available as ` \\host.lan\Data`.
158
+
The example folder `./example` will be available as ` \\host.lan\Data`.
157
159
158
160
> [!TIP]
159
161
> You can map this path to a drive letter in Windows, for easier access.
@@ -171,10 +173,10 @@ The example folder `/home/user/example` will be available as ` \\host.lan\Data`.
171
173
172
174
```yaml
173
175
volumes:
174
-
- /home/user/example.iso:/custom.iso
176
+
- ./example.iso:/custom.iso
175
177
```
176
178
177
-
Replace the example path `/home/user/example.iso` with the filename of your desired ISO file. The value of `VERSION` will be ignored in this case.
179
+
Replace the example path `./example.iso` with the filename of your desired ISO file. The value of `VERSION` will be ignored in this case.
178
180
179
181
### How do I run a script after installation?
180
182
@@ -184,10 +186,10 @@ The example folder `/home/user/example` will be available as ` \\host.lan\Data`.
184
186
185
187
```yaml
186
188
volumes:
187
-
- /home/user/example:/oem
189
+
- ./example:/oem
188
190
```
189
191
190
-
The example folder `/home/user/example` will be copied to `C:\OEM` and the containing `install.bat` will be executed during the last step of the automatic installation.
192
+
The example folder `./example` will be copied to `C:\OEM` and the containing `install.bat` will be executed during the last step of the automatic installation.
191
193
192
194
### How do I perform a manual installation?
193
195
@@ -316,8 +318,8 @@ The example folder `/home/user/example` will be available as ` \\host.lan\Data`.
0 commit comments