2
0
mirror of https://github.com/acepanel/templates.git synced 2026-02-04 07:27:13 +08:00

fix: openlist

This commit is contained in:
2026-01-23 05:06:09 +08:00
parent 3fd800ea52
commit d001d514f1
2 changed files with 8 additions and 16 deletions

View File

@@ -14,13 +14,6 @@ architectures:
- amd64
- arm64
environments:
OPENLIST_IMAGE:
description:
en: Docker Image
zh_CN: Docker 镜像
zh_TW: Docker 鏡像
type: text
default: "xhofe/openlist:latest"
OPENLIST_PORT_HTTP:
description:
en: HTTP Port
@@ -28,13 +21,12 @@ environments:
zh_TW: HTTP 埠
type: port
default: 5244
OPENLIST_PORT_S3:
OPENLIST_ADMIN_PASSWORD:
description:
en: S3 Port
zh_CN: S3 端口
zh_TW: S3 埠
type: port
default: 5246
en: Admin Password
zh_CN: 管理员密码
zh_TW: 管理員密碼
type: password
OPENLIST_TIME_ZONE:
description:
en: Time Zone

View File

@@ -1,16 +1,16 @@
services:
openlist:
image: ${OPENLIST_IMAGE}
restart: always
image: openlistteam/openlist:v4.1.9-aio
restart: unless-stopped
user: "0:0"
networks:
- acepanel-network
ports:
- "${OPENLIST_PORT_HTTP}:5244"
- "${OPENLIST_PORT_S3}:5246"
volumes:
- ./data:/opt/openlist/data
environment:
- OPENLIST_ADMIN_PASSWORD=${OPENLIST_ADMIN_PASSWORD}
- TZ=${OPENLIST_TIME_ZONE}
- UMASK=022
networks: