overleaf/server-ce/Dockerfile

85 lines
2.3 KiB
Docker
Raw Normal View History

2019-08-07 04:47:05 -04:00
# ---------------------------------------------
# Overleaf Community Edition (overleaf/overleaf)
# ---------------------------------------------
2017-02-22 04:20:07 -05:00
2017-09-08 04:09:42 -04:00
FROM sharelatex/sharelatex-base:latest
2015-02-06 12:01:50 -05:00
2017-02-22 04:48:34 -05:00
ENV baseDir .
2019-08-07 04:47:05 -04:00
# Install app settings files
# --------------------------
2016-09-21 08:47:07 -04:00
ADD ${baseDir}/settings.coffee /etc/sharelatex/settings.coffee
ENV SHARELATEX_CONFIG /etc/sharelatex/settings.coffee
2019-08-07 04:47:05 -04:00
# Checkout Overleaf Community Edition repo
# ----------------------------------------
RUN git clone https://github.com/overleaf/overleaf.git \
--depth 1 /var/www/sharelatex
# Install dependencies needed to run configuration scripts
# --------------------------------------------------------
ADD ${baseDir}/package.json /var/www/package.json
ADD ${baseDir}/git-revision.js /var/www/git-revision.js
RUN cd /var/www && npm install
# Replace overleaf/config/services.js with the list of available
# services in Overleaf Community Edition
# --------------------------------------------------------------
ADD ${baseDir}/services.js /var/www/sharelatex/config/services.js
# Checkout services
# -----------------
RUN cd /var/www/sharelatex && \
npm install && grunt install;
# install and compile services
# ----------------------------
RUN bash -c 'cd /var/www/sharelatex && source ./bin/install-services'
RUN bash -c 'cd /var/www/sharelatex && source ./bin/compile-services'
# Change application ownership to www-data
# ----------------------------------------
RUN chown -R www-data:www-data /var/www/sharelatex;
# Copy runit service startup scripts to its location
# --------------------------------------------------
ADD ${baseDir}/runit /etc/service
# Configure nginx
# ---------------
RUN rm /etc/nginx/sites-enabled/default
ADD ${baseDir}/nginx/nginx.conf /etc/nginx/nginx.conf
ADD ${baseDir}/nginx/sharelatex.conf /etc/nginx/sites-enabled/sharelatex.conf
2019-08-07 04:47:05 -04:00
# Configure log rotation
# ----------------------
ADD ${baseDir}/logrotate/sharelatex /etc/logrotate.d/sharelatex
2015-02-06 12:01:50 -05:00
2019-08-07 04:47:05 -04:00
# Copy Phusion Image startup scripts to its location
# --------------------------------------------------
COPY ${baseDir}/init_scripts/ /etc/my_init.d/
2016-04-20 20:55:47 -04:00
2019-08-07 04:47:05 -04:00
# Stores the version installed for each service
# ---------------------------------------------
2016-04-20 20:55:47 -04:00
RUN cd /var/www && node git-revision > revisions.txt
2019-08-07 04:47:05 -04:00
2015-02-09 11:18:58 -05:00
EXPOSE 80
WORKDIR /
2015-02-18 12:08:41 -05:00
ENTRYPOINT ["/sbin/my_init"]
2016-05-31 10:15:24 -04:00