44f2310af1
- 添加 .gitignore 文件以忽略 Docker 数据目录和日志文件 - 创建 MySQL Docker Compose 配置文件 - 创建 Nginx Docker Compose 配置文件 - 创建 Redis Docker Compose 配置文件 - 配置 MySQL 容器环境变量和数据卷 - 配置 Nginx 容器端口映射和配置卷 - 配置 Redis 容器持久化设置
14 lines
245 B
YAML
14 lines
245 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
nginx:
|
|
image: nginx:alpine
|
|
container_name: nginx
|
|
ports:
|
|
- "80:80"
|
|
- "443:443"
|
|
volumes:
|
|
- ./html:/usr/share/nginx/html
|
|
- ./conf.d:/etc/nginx/conf.d
|
|
- ./logs:/var/log/nginx
|