Skip to content

Commit 68f541d

Browse files
committed
fix: filebrowser template
1 parent afdf4cd commit 68f541d

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

templates/compose/filebrowser.yaml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
# slogan: FileBrowser is a web-based file manager and file explorer with a user-friendly interface.
33
# tags: file-management, storage-access, data-organization, file-utilization, administration-tool
44
# logo: svgs/filebrowser.svg
5+
# port: 80
56

67
services:
78
filebrowser:
@@ -13,12 +14,20 @@ services:
1314
source: ./srv
1415
target: /srv
1516
isDirectory: true
16-
- ./database.db:/database.db
17+
- type: bind
18+
source: ./database.db
19+
target: /database.db
20+
isDirectory: false
21+
content: ""
1722
- type: bind
1823
source: ./filebrowser.json
1924
target: /.filebrowser.json
2025
read_only: true
21-
content: "{}"
26+
content: |
27+
{
28+
"address": "0.0.0.0",
29+
"port": 80
30+
}
2231
healthcheck:
2332
test: ["CMD", "curl", "-f", "http://127.0.0.1:80"]
2433
interval: 2s

templates/service-templates.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)