Skip to content

Commit a441d17

Browse files
authored
Revert "Update: filebrowser v2.32.0 (#681)"
This reverts commit ac68c80.
1 parent ac68c80 commit a441d17

File tree

3 files changed

+12
-33
lines changed

3 files changed

+12
-33
lines changed

Apps/FileBrowser/appfile.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,19 @@
1919
"developer": {
2020
"name": "File Browser",
2121
"website": "https://filebrowser.org/",
22-
"donate_text": "",
22+
"donate_text": "",
2323
"donate_link": ""
2424
},
2525
"adaptor": {
2626
"name": "CasaOS Team",
2727
"website": "https://www.casaos.io",
28-
"donate_text": "",
28+
"donate_text": "",
2929
"donate_link": ""
3030
},
3131
"support": "https://discord.gg/knqAbbBbeX",
3232
"website": "https://www.casaos.io",
3333
"container": {
34-
"image": "filebrowser/filebrowser:v2.32.0",
34+
"image": "filebrowser/filebrowser:latest",
3535
"shell": "sh",
3636
"privileged": false,
3737
"network_model": "bridge",
@@ -72,12 +72,12 @@
7272
],
7373
"volumes": [
7474
{
75-
"container": "/data",
76-
"host": "/DATA/AppData/$AppID",
75+
"container": "/db",
76+
"host": "/DATA/AppData/$AppID/db",
7777
"mode": "rw",
7878
"allocation": "automatic",
7979
"configurable": "no",
80-
"description": "FileBrowser database & configuration directory."
80+
"description": "FileBrowser database directory."
8181
},
8282
{
8383
"container": "/srv",

Apps/FileBrowser/changelog.txt

-20
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,3 @@
1-
2.32.0 (2025-01-31)
2-
Fixes
3-
Fix eslint warnings (#3698) (0201f9c)
4-
Fix user creation on proxy auth (#3666) (5300d00)
5-
disk usage refreshing (#3692) (bbdd313)
6-
add proper healthcheck for S6 containers (#3691) (045064f)
7-
prompts disappearing on copy / move / upload (#3537) (d1c84a8)
8-
create user on proxy authentication if user does not exist (#3569) (209acf2)
9-
Build
10-
fix go releaser (ba797cd)
11-
bump golang.org/x/net from 0.23.0 to 0.33.0 (#3712) (1194cfe)
12-
bump golang.org/x/crypto from 0.26.0 to 0.31.0 (#3634) (e92dbb4)
13-
bump cross-spawn from 7.0.3 to 7.0.6 in /tools (#3601) (25372ed)
14-
update to node 22 and pnpm (#3616) (d51a343)
15-
bump vue-i18n from 9.10.2 to 9.14.2 in /frontend (#3618) (0659594)
16-
bump github.com/golang-jwt/jwt/v4 from 4.5.0 to 4.5.1 (#3574) (2fdea73)
17-
Other
18-
update ko.json (#3688) (252f0a7)
19-
add translation for the "Hide dot files setting" in "es" (Spanish) language (#3704) (cc33138)
20-
211
2.20.1 (2021-12-21)
222
Build
233
revert to using the default alpine based docker image (46d8046)

Apps/FileBrowser/docker-compose.yml

+6-7
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services:
55
PGID: $PGID
66
PUID: $PUID
77
TZ: $TZ
8-
image: filebrowser/filebrowser:v2.32.0
8+
image: filebrowser/filebrowser:v2.23.0
99
deploy:
1010
resources:
1111
reservations:
@@ -18,12 +18,11 @@ services:
1818
restart: unless-stopped
1919
volumes:
2020
- type: bind
21-
source: /DATA/AppData/$AppID
22-
target: /data
21+
source: /DATA/AppData/$AppID/db
22+
target: /db
2323
- type: bind
2424
source: /DATA
2525
target: /srv
26-
entrypoint: ["/filebrowser", "-c", "/data/.filebrowser.json", "-d", "/data/database.db", "-a", "0.0.0.0", "-p", "80"]
2726
x-casaos:
2827
envs:
2928
- container: TZ
@@ -45,10 +44,10 @@ services:
4544
zh_cn: WebUI端口
4645

4746
volumes:
48-
- container: /data
47+
- container: /db
4948
description:
50-
en_us: FileBrowser database & configuration directory.
51-
zh_cn: FileBrowser数据库和配置目录。
49+
en_us: FileBrowser database directory.
50+
zh_cn: FileBrowser数据库目录
5251
- container: /srv
5352
description:
5453
en_us: FileBrowser managed directory.

0 commit comments

Comments
 (0)