加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
docker-compose.yml 934 Bytes
一键复制 编辑 原始数据 按行查看 历史
一米阳光 提交于 2023-12-24 12:25 . 新增Docker容器化解决方案
version: '3.7'
# 应用服务
services:
# 后端服务
fastapi_antdvue:
# 镜像名称
image: fastapi_antdvue
# 容器名称
container_name: fastapi_antdvue
# 构建镜像
build:
context: ./
dockerfile: Dockerfile
#build: .
# 将容器运行在特权模式下,意味着容器内的进程将具
# 有访问宿主机的权限,包括文件系统、设备和系统功能等
privileged: true
# 指定容器中运行的用户
user: root
# 启动策略为始终重启
restart: always
# 设置网络模式为host模式
network_mode: host
# 端口映射
ports:
- 8036:8036
# 文件挂载
volumes:
- ./uploads:/data/apps/uploads
# 执行命令
command: python main.py runserver 0.0.0.0:8036 --noreload
# 日志配置
logging:
driver: "json-file"
options:
max-size: "500m"
max-file: "10"
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化