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
+9-1Lines changed: 9 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -42,6 +42,7 @@ services:
42
42
command: -script fn:sysinfo
43
43
volumes:
44
44
data:
45
+
name: filebot-application-data
45
46
```
46
47
47
48
@@ -68,6 +69,7 @@ services:
68
69
- 5452:5452
69
70
volumes:
70
71
data:
72
+
name: filebot-application-data
71
73
```
72
74
73
75
Once the [FileBot Node Service](https://github.com/filebot/filebot-node) is running, you can access the web interface via [http://localhost:5452/filebot/](http://localhost:5452/filebot/). You can create prepared tasks via `Execute ➔ Schedule` and then execute them remotely via `curl http://localhost:5452/task?id=${TASK_ID}`.

222
229
@@ -267,6 +274,7 @@ services:
267
274
command: -script fn:sysinfo
268
275
volumes:
269
276
data:
277
+
name: filebot-application-data
270
278
```
271
279
272
280
@@ -315,7 +323,7 @@ FileBot 4.9.6 (r9125)
315
323
316
324
`docker` treats each volume mount as a separate filesystem. Thus, if you are using `--action MOVE` or `--action HARDLINK` then the input path and the output path must be on the same volume mount. If you process files across volume mounts, then `--action HARDLINK` will fail with `I/O error: cross-device link`, and `--action MOVE` and `--action DUPLICATE` will resort to physically copying files.
317
325
318
-
Please organize your files like so, and then use `/path/to/files` as volume mount:
326
+
Please organize your files like so, and then use `/path/to/files` as single volume mount:
0 commit comments