3 Star 22 Fork 22

半城风雨/EasyGoAdmin_Iris_EleVue

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
docker-compose.yml 886 Bytes
一键复制 编辑 原始数据 按行查看 历史
半城风雨 提交于 2024-01-03 20:39 . 新增Docker容器化解决方案
version: '3.7'
# 应用服务
services:
# 应用服务
iris_elevue:
# 镜像名称
image: iris_elevue
# 容器名称
container_name: iris_elevue
# 构建镜像
build:
context: ./
dockerfile: Dockerfile
#build: .
# 将容器运行在特权模式下,意味着容器内的进程将具
# 有访问宿主机的权限,包括文件系统、设备和系统功能等
privileged: true
# 指定容器中运行的用户
user: root
# 启动策略为始终重启
restart: always
# 设置网络模式为host模式
network_mode: host
# 端口映射
ports:
- 9088:9088
# 文件挂载
volumes:
- /usr/local/docker/nginx/html/iris_elevue/uploads:/data/app/public/uploads
# 日志配置
logging:
driver: "json-file"
options:
max-size: "500m"
max-file: "10"
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/easygoadmin/EasyGoAdmin_Iris_EleVue.git
git@gitee.com:easygoadmin/EasyGoAdmin_Iris_EleVue.git
easygoadmin
EasyGoAdmin_Iris_EleVue
EasyGoAdmin_Iris_EleVue
master

搜索帮助