1 Star 0 Fork 8

王凯/python堡垒机

forked from py2010/python堡垒机 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
docker-entrypoint.sh 631 Bytes
一键复制 编辑 原始数据 按行查看 历史
py2010 提交于 2021-07-01 14:31 . django-config
#!/bin/bash
# find ./ -name "*.pyc" -exec rm -f {} \;
# 宿主机有挂载项目到容器目录, 便于修改测试
DX_DIR=/opt/dx
if [ "$0" == ${DX_DIR}/docker-entrypoint.sh ];then
echo 使用宿主机挂载目录: $DX_DIR
cd $DX_DIR
DEV=1
elif [ -x ${DX_DIR}/docker-entrypoint.sh ]; then
exec ${DX_DIR}/docker-entrypoint.sh
fi
# 启动REDIS, 为防止host网络模式下与宿主机redis端口冲突, 使用6377
redis-server /etc/redis.conf --port 6377 &
sleep 1
# 启动Django网站
if [ $DEV ]; then
c/d ssh &
c/d & # runserver 开发测试
else
# 生产运行
c/d start
fi
sleep inf
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/wang_kai_yun/dx.git
git@gitee.com:wang_kai_yun/dx.git
wang_kai_yun
dx
python堡垒机
main

搜索帮助