1 Star 15 Fork 4

yangyuexiong/Flask_BestPractices

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
server_start.sh 494 Bytes
一键复制 编辑 原始数据 按行查看 历史
yangyuexiong 提交于 2022-01-20 11:33 . docs:docker start shell
#!/bin/bash
cd /srv/Flask_BestPractices
Flask_BestPractices_UUID=`docker ps | grep Flask_BestPractices | awk '{print $1}'`;
if [ $Flask_BestPractices_UUID ]; then
docker stop $Flask_BestPractices_UUID;
echo "stop success";
fi
echo y | docker system prune
docker build -t 'Flask_BestPractices' .
echo "build success"
docker run -d --network host --name Flask_BestPractices Flask_BestPractices
# docker run -d -p 5000:5000 --name Flask_BestPractices Flask_BestPractices
echo "run success"
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/yangyuexiong/Flask_BestPractices.git
git@gitee.com:yangyuexiong/Flask_BestPractices.git
yangyuexiong
Flask_BestPractices
Flask_BestPractices
master

搜索帮助