Files
auto-index/docker-compose.yml
2025-12-03 04:15:17 +00:00

15 lines
294 B
YAML

version: '3.8'
services:
fileserver:
image: nginx-autoindex:latest
container_name: nginx-autoindex
ports:
- "8080:80"
volumes:
# 挂载你的文件目录到容器
- ./data:/var/www/files
restart: unless-stopped
environment:
- TZ=Asia/Shanghai