mirror of https://github.com/mindoc-org/mindoc.git
commit
016a57b34b
11
Dockerfile
11
Dockerfile
|
@ -1,7 +1,7 @@
|
||||||
FROM golang:1.10-alpine3.7
|
FROM golang:1.10-alpine3.7
|
||||||
|
|
||||||
# add china aliyun repo 新增了 alpine 3.6 的阿里源
|
# add china aliyun repo 新增了 alpine 3.6 的阿里源
|
||||||
RUN cp /etc/apk/repositories /etc/apk/repositories.back && \
|
RUN cp /etc/apk/repositories /etc/apk/repositories.back && \
|
||||||
echo "https://mirrors.aliyun.com/alpine/v3.6/main/" > /etc/apk/repositories && \
|
echo "https://mirrors.aliyun.com/alpine/v3.6/main/" > /etc/apk/repositories && \
|
||||||
echo "https://mirrors.aliyun.com/alpine/v3.6/community/" >> /etc/apk/repositories
|
echo "https://mirrors.aliyun.com/alpine/v3.6/community/" >> /etc/apk/repositories
|
||||||
|
|
||||||
|
@ -11,11 +11,14 @@ ADD . /go/src/github.com/lifei6671/mindoc
|
||||||
|
|
||||||
WORKDIR /go/src/github.com/lifei6671/mindoc
|
WORKDIR /go/src/github.com/lifei6671/mindoc
|
||||||
|
|
||||||
RUN chmod +x start.sh
|
RUN go get -u github.com/golang/dep/cmd/dep && dep ensure && \
|
||||||
|
|
||||||
RUN go get -u github.com/golang/dep/cmd/dep && dep ensure && \
|
|
||||||
CGO_ENABLE=1 go build -v -o mindoc_linux_amd64 -ldflags="-w -X main.VERSION=$TAG -X 'main.BUILD_TIME=`date`' -X 'main.GO_VERSION=`go version`'" && \
|
CGO_ENABLE=1 go build -v -o mindoc_linux_amd64 -ldflags="-w -X main.VERSION=$TAG -X 'main.BUILD_TIME=`date`' -X 'main.GO_VERSION=`go version`'" && \
|
||||||
rm -rf commands controllers models modules routers tasks vendor docs search data utils graphics .git Godeps uploads/* .gitignore .travis.yml Dockerfile gide.yaml LICENSE main.go README.md conf/enumerate.go conf/mail.go install.lock
|
rm -rf commands controllers models modules routers tasks vendor docs search data utils graphics .git Godeps uploads/* .gitignore .travis.yml Dockerfile gide.yaml LICENSE main.go README.md conf/enumerate.go conf/mail.go install.lock
|
||||||
|
|
||||||
|
FROM alpine:latest
|
||||||
|
LABEL maintainer="ehlxr.me@gmail.com"
|
||||||
|
WORKDIR /mindoc
|
||||||
|
COPY --from=0 /go/src/github.com/lifei6671/mindoc .
|
||||||
|
RUN chmod +x start.sh
|
||||||
|
|
||||||
CMD ["./start.sh"]
|
CMD ["./start.sh"]
|
10
start.sh
10
start.sh
|
@ -1,10 +1,10 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
cd /go/src/github.com/lifei6671/mindoc/
|
cd /mindoc/
|
||||||
|
|
||||||
if [ ! -f "/go/src/github.com/lifei6671/mindoc/conf/app.conf" ] ; then
|
if [ ! -f "/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
|
cp /mindoc/conf/app.conf.example /mindoc/conf/app.conf
|
||||||
sed -i "s#^db_adapter=.*#db_adapter=sqlite3#g" 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
|
sed -i "s#^db_database.*#db_database=./database/mindoc.db#g" conf/app.conf
|
||||||
fi
|
fi
|
||||||
|
@ -82,5 +82,5 @@ fi
|
||||||
|
|
||||||
sed -i 's/^runmode.*/runmode=prod/g' conf/app.conf
|
sed -i 's/^runmode.*/runmode=prod/g' conf/app.conf
|
||||||
|
|
||||||
/go/src/github.com/lifei6671/mindoc/mindoc_linux_amd64 install
|
/mindoc/mindoc_linux_amd64 install
|
||||||
/go/src/github.com/lifei6671/mindoc/mindoc_linux_amd64
|
/mindoc/mindoc_linux_amd64
|
Loading…
Reference in New Issue