File size: 453 Bytes
88d9252
 
 
 
 
aebad90
88d9252
aebad90
88d9252
fc56e8a
 
88d9252
 
 
 
 
 
 
aebad90
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
FROM openlistteam/openlist:beta-aio

WORKDIR /opt/openlist
USER root

# 创建数据目录并赋权
RUN mkdir -p /opt/openlist/data
RUN chmod -R 777 /opt/openlist/data

# 安装 Nginx(Alpine 用 apk)
RUN apk update && apk add --no-cache nginx

# 复制 Nginx 配置
COPY nginx.conf /etc/nginx/nginx.conf

# 暴露端口
EXPOSE 7860

# 启动命令:先启动 OpenList,再启动 Nginx
CMD ["sh", "-c", "./openlist server & nginx -g 'daemon off;'"]