mirror of https://github.com/mindoc-org/mindoc.git
dockerfile添加CDN配置参数
parent
0d4c805fb7
commit
fc6ec31b31
14
start.sh
14
start.sh
|
@ -27,10 +27,22 @@ if [ ! -z $MYSQL_PASSWORD ] ; then
|
|||
sed -i 's/^db_password.*/db_password='$MYSQL_PASSWORD'/g' conf/app.conf
|
||||
fi
|
||||
|
||||
if [ ! -z $HTTP_PORT] ; then
|
||||
if [ ! -z $HTTP_PORT ] ; then
|
||||
sed -i 's/^httpport.*/httpport='$HTTP_PORT'/g' conf/app.conf
|
||||
fi
|
||||
|
||||
if [ ! -z $CDNJS ]; then
|
||||
sed -i 's/^cdnjs.*/cdnjs='$CDNJS'/g' conf/app.conf
|
||||
fi
|
||||
|
||||
if [ ! -z $CDNCSS ]; then
|
||||
sed -i 's/^cdncss.*/cdncss='$CDNCSS'/g' conf/app.conf
|
||||
fi
|
||||
|
||||
if [ ! -z $CDN ]; then
|
||||
sed -i 's/^cdn.*/cdnjs='$CDN'/g' conf/app.conf
|
||||
fi
|
||||
|
||||
sed -i 's/^runmode.*/runmode=prod/g' conf/app.conf
|
||||
|
||||
/go/src/github.com/lifei6671/godoc/godoc_linux_amd64 install
|
||||
|
|
Loading…
Reference in New Issue