1 Star 0 Fork 3

Rooit/fast-api-demo

forked from amspring/fast-api-demo 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
docker-compose.yml 691 Bytes
一键复制 编辑 原始数据 按行查看 历史
version: '3'
services:
FastApi:
container_name: FastApi
build:
context: ./ #dockerfile目录
dockerfile: Dockerfile #Dockerfile文件
image: api/python3.11:v1.0.0
hostname: "FastApi"
privileged: true # 使用root权限
restart: always # 随docker重启
ports: # 对外暴露端口
- "6021:5000"
volumes:
- /opt/app/fast/fast-api-demo:/opt/app/code #代码
- /opt/app/fast/logs:/opt/app/logs #日志
- /opt/app/fast/files:/opt/app/files #文件
environment:
- TZ=Asia/Shanghai
networks:
default:
external:
name: api-net # 如果不存在, 先创建: docker network create api-net
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/irooit/fast-api-demo.git
[email protected]:irooit/fast-api-demo.git
irooit
fast-api-demo
fast-api-demo
master

搜索帮助