Skip to content

Commit 6a6ff74

Browse files
committed
service "filebot" refers to undefined volume data: invalid compose project
1 parent 6758a2a commit 6a6ff74

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ services:
4242
command: -script fn:sysinfo
4343
volumes:
4444
data:
45+
name: filebot-application-data
4546
```
4647
4748
@@ -68,6 +69,7 @@ services:
6869
- 5452:5452
6970
volumes:
7071
data:
72+
name: filebot-application-data
7173
```
7274
7375
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}`.
@@ -102,6 +104,7 @@ services:
102104
- FILEBOT_NODE_HTTPS_CRT=/etc/ssl/certs/server.crt
103105
volumes:
104106
data:
107+
name: filebot-application-data
105108
```
106109
![FileBot Node](https://github.com/filebot/docs/raw/master/screenshots/docker-node.png)
107110

@@ -129,6 +132,7 @@ services:
129132
command: /volume1/input --output /volume1/output # see amc script usage
130133
volumes:
131134
data:
135+
name: filebot-application-data
132136
```
133137

134138

@@ -157,6 +161,7 @@ services:
157161
- XPRA_AUTH=password:value=YOUR_PASSWORD
158162
volumes:
159163
data:
164+
name: filebot-application-data
160165
```
161166
![Xpra Remote Desktop](https://github.com/filebot/docs/raw/master/screenshots/docker-xpra.png)
162167

@@ -189,6 +194,7 @@ services:
189194
- 8887:8887
190195
volumes:
191196
data:
197+
name: filebot-application-data
192198
```
193199

194200

@@ -217,6 +223,7 @@ services:
217223
- PASSWORD=secret1234
218224
volumes:
219225
data:
226+
name: filebot-application-data
220227
```
221228
![Map Network Drive via HTTP WebDAV](https://github.com/filebot/docs/raw/master/screenshots/filebot-webdav-map-network-drive.png)
222229

@@ -267,6 +274,7 @@ services:
267274
command: -script fn:sysinfo
268275
volumes:
269276
data:
277+
name: filebot-application-data
270278
```
271279

272280

@@ -315,7 +323,7 @@ FileBot 4.9.6 (r9125)
315323

316324
`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.
317325

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:
319327
```
320328
/path/to/files/input
321329
/path/to/files/output

0 commit comments

Comments
 (0)