-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathfilebrowser.json
More file actions
49 lines (49 loc) · 2.04 KB
/
filebrowser.json
File metadata and controls
49 lines (49 loc) · 2.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"File Browser": {
"description": "Filebrowser provides a file managing interface within a specified Share: upload, delete, preview, rename, and edit the Shares files. Multi-users support/management: each user has their own directory with the mapped Share.<p>Based on the <a href='https://hub.docker.com/r/filebrowser/filebrowser' target='_blank'>official OCI image</a>, available for amd64 and arm64 architecture.</p>",
"version": "1.0",
"website": "https://filebrowser.org/",
"containers": {
"filebrowser": {
"image": "filebrowser/filebrowser",
"tag": "s6",
"launch_order": 1,
"ports": {
"80": {
"description": "Webui port.",
"label": "WebUI port [e.g. 8090]",
"host_default": 8090,
"protocol": "tcp",
"ui": true
}
},
"volumes": {
"/config": {
"description": "Share for filebrowser configuration.",
"label": "Config [e.g. filebrowser-config]"
},
"/database": {
"description": "Share for the filebrowser database. Important: initially must contain only a empty file named `filebrowser.db` to avoid errors during the initial installation.",
"label": "Database Location [e.g. filebrowser-db]"
},
"/srv": {
"description": "Share to view in filemanager.",
"label": "Viewed Storage [e.g. filemanager-view]"
}
},
"environment": {
"PGID": {
"description": "Enter a valid GID to use along with the above UID. It(or the above UID) must have full permissions to all Shares mapped in the previous step.",
"label": "GID to run filebrowser as.",
"index": 2
},
"PUID": {
"description": "Enter a valid UID to run filebrowser as. It must have full permissions to all Shares mapped in the previous step.",
"label": "UID to run filebrowser as.",
"index": 1
}
}
}
}
}
}