lix02 commited on
Commit
d0783b7
·
verified ·
1 Parent(s): 6495eab

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +8 -0
Dockerfile ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ # 使用 uozi/nginx-ui:latest 镜像
2
+ FROM uozi/nginx-ui:latest
3
+
4
+ # 暴露端口 7860
5
+ EXPOSE 7860
6
+
7
+ # 启动 Nginx-UI 并监听 7860 端口
8
+ CMD ["nginx-ui", "--port", "7860"]