Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
lix02
/
nginxui
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
d0783b7
nginxui
/
Dockerfile
lix02
Create Dockerfile
d0783b7
verified
6 months ago
raw
Copy download link
history
blame
Safe
172 Bytes
# 使用 uozi/nginx-ui:latest 镜像
FROM
uozi/nginx-ui:latest
# 暴露端口 7860
EXPOSE
7860
# 启动 Nginx-UI 并监听 7860 端口
CMD
[
"nginx-ui"
,
"--port"
,
"7860"
]