-
Notifications
You must be signed in to change notification settings - Fork 363
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
Merge pull request #153 from monlor:test
feat: 🎸 设置webdav密码后自动开启强制登陆
Showing
10 changed files
with
30 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,8 @@ FROM xiaoyaliu/alist:hostmode | |
|
||
LABEL MAINTAINER [email protected] | ||
|
||
ENV TZ=Asia/Shanghai | ||
|
||
EXPOSE 5678 2345 2346 | ||
|
||
VOLUME /data | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,8 @@ FROM ${BASE_IMAGE} | |
|
||
LABEL MAINTAINER [email protected] | ||
|
||
ENV TZ=Asia/Shanghai | ||
|
||
ARG TARGETARCH | ||
|
||
ENV SHELL2HTTP_VERSION="1.17.0" \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,14 +11,12 @@ QUARK_COOKIE= | |
AUTO_UPDATE_ENABLED=true | ||
# 自动清理阿里云盘 | ||
AUTO_CLEAR_ENABLED=true | ||
# 阿里云盘自动清理间隔,单位分钟,默认10分钟 | ||
# 阿里云盘自动清理间隔,单位分钟,范围0-60分钟,默认10分钟 | ||
AUTO_CLEAR_INTERVAL= | ||
# pikpak 账号,用来观看小雅中pikpak分享给你的资源,格式:`[email protected]:aaadds` | ||
PIKPAK_USER= | ||
# 开启tvbox随机订阅地址,true/false,默认false | ||
TVBOX_SECURITY= | ||
# 开启登陆功能,true/false,默认false | ||
FORCE_LOGIN= | ||
# webdav用户名为dav,设置密码。默认用户密码:guest/guest_Api789 | ||
WEBDAV_PASSWORD= | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,8 @@ FROM ${BASE_IMAGE} | |
|
||
LABEL MAINTAINER [email protected] | ||
|
||
ENV TZ=Asia/Shanghai | ||
|
||
# 更新软件包索引、安装 ping 命令并清理缓存 | ||
RUN apt-get update \ | ||
&& apt-get install -y iputils-ping \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,8 @@ FROM xiaoyaliu/glue:latest | |
|
||
LABEL MAINTAINER [email protected] | ||
|
||
ENV TZ=Asia/Shanghai | ||
|
||
WORKDIR /media | ||
|
||
# 设置非交互模式,以避免安装过程中提示用户输入 | ||
|