cloudron build does not use sqlite

This commit is contained in:
Girish Ramakrishnan 2015-06-23 10:51:55 -07:00
parent 3978609185
commit adbbfba7c3
2 changed files with 5 additions and 3 deletions

View File

@ -7,15 +7,15 @@ RUN apt-get update && \
ADD supervisor/ /etc/supervisor/conf.d/
ENV GOPATH /home/cloudron
RUN mkdir -p /home/cloudron/gogs/log
RUN mkdir -p /home/cloudron/gogs/
## TODO: use redis as well
RUN mkdir -p ${GOPATH}/src/github.com/gogits && \
cd ${GOPATH}/src/github.com/gogits && \
git clone https://github.com/cloudron-io/gogs.git && \
cd gogs && \
go get -u -tags "sqlite" && \
go build -tags "sqlite" && \
go get ./... && \
go build && \
go install && \
mv ${GOPATH}/bin/gogs /home/cloudron/gogs/

View File

@ -5,6 +5,8 @@ set -eu -o pipefail
fqdn=$(hostname -f)
chown -R cloudron.cloudron /app/data
mkdir -p /home/cloudron/gogs/log
chown cloudron:cloudron /home/cloudron/gogs/log
# Dockerfile changes the ownership of this file to make it writable by cloudron user
sed -e "s/^Port .*/Port ${SSH_PORT}/" \