mirror of
https://github.com/mindoc-org/mindoc.git
synced 2025-10-21 19:37:27 +08:00
完善Dockerfile
This commit is contained in:
22
start.sh
22
start.sh
@@ -3,8 +3,14 @@ set -e
|
||||
|
||||
cd /go/src/github.com/lifei6671/mindoc/
|
||||
|
||||
if [ ! -f "conf/app.conf" ] ; then
|
||||
cp conf/app.conf.example conf/app.conf
|
||||
if [ ! -f "/go/src/github.com/lifei6671/mindoc/conf/app.conf" ] ; then
|
||||
cp /go/src/github.com/lifei6671/mindoc/conf/app.conf.example /go/src/github.com/lifei6671/mindoc/conf/app.conf
|
||||
sed -i "s#^db_adapter=.*#db_adapter=sqlite3#g" conf/app.conf
|
||||
sed -i "s#^db_database.*#db_database=./database/mindoc.db#g" conf/app.conf
|
||||
fi
|
||||
|
||||
if [ ! -z $DB_ADAPTER ]; then
|
||||
sed -i "s#^db_adapter=.*#db_adapter=${DB_ADAPTER}#g" conf/app.conf
|
||||
fi
|
||||
|
||||
if [ ! -z $MYSQL_PORT_3306_TCP_ADDR ] ; then
|
||||
@@ -16,7 +22,7 @@ if [ ! -z $MYSQL_PORT_3306_TCP_PORT ] ; then
|
||||
fi
|
||||
|
||||
if [ ! -z $MYSQL_INSTANCE_NAME ] ; then
|
||||
sed -i 's/^db_database.*/db_database='$MYSQL_INSTANCE_NAME'/g' conf/app.conf
|
||||
sed -i "s#^db_database.*#db_database=${MYSQL_INSTANCE_NAME}#g" conf/app.conf
|
||||
fi
|
||||
|
||||
if [ ! -z $MYSQL_USERNAME ] ; then
|
||||
@@ -28,15 +34,18 @@ if [ ! -z $MYSQL_PASSWORD ] ; then
|
||||
fi
|
||||
|
||||
if [ ! -z $HTTP_PORT ] ; then
|
||||
sed -i "s/^httpport.*/httpport=${HTTP_PORT}/g" conf/app.conf
|
||||
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
|
||||
sed -i "s#^cdnjs=.*#cdnjs=$CDNJS#g" conf/app.conf
|
||||
fi
|
||||
if [ ! -z $CDNIMG ]; then
|
||||
sed -i "s#^cdnimg=.*#cdnimg=$CDNIMG#g" conf/app.conf
|
||||
fi
|
||||
|
||||
if [ ! -z $CDNCSS ]; then
|
||||
sed -i "s#^cdncss.*#cdncss=$CDNCSS#g" conf/app.conf
|
||||
sed -i "s#^cdncss=.*#cdncss=$CDNCSS#g" conf/app.conf
|
||||
fi
|
||||
|
||||
if [ ! -z $CDN ]; then
|
||||
@@ -46,5 +55,4 @@ fi
|
||||
sed -i 's/^runmode.*/runmode=prod/g' conf/app.conf
|
||||
|
||||
/go/src/github.com/lifei6671/mindoc/mindoc_linux_amd64 install
|
||||
|
||||
/go/src/github.com/lifei6671/mindoc/mindoc_linux_amd64
|
Reference in New Issue
Block a user