seafile-containerized/image/seafile/Dockerfile

24 lines
730 B
Docker
Raw Normal View History

2017-01-03 07:08:34 +00:00
FROM seafileltd/base:16.04
WORKDIR /opt/seafile
# syslog-ng and syslog-forwarder would mess up the container stdout, not good
# when debugging/upgrading.
RUN sed -i -e 's|\(^exec syslog-ng.*$\)|\1 >>/var/log/syslog-ng.log 2>\&1|g' /etc/service/syslog-ng/run && \
rm -rf /etc/service/syslog-forwarder
RUN mkdir -p /etc/my_init.d
ENV SEAFILE_VERSION=6.2.5
RUN mkdir -p /opt/seafile/ && \
2017-08-08 06:12:39 +00:00
curl -sSL -o - https://download.seadrive.org/seafile-server_${SEAFILE_VERSION}_x86-64.tar.gz \
| tar xzf - -C /opt/seafile/
ADD create_data_links.sh /etc/my_init.d/01_create_data_links.sh
COPY scripts /scripts
COPY templates /templates
COPY bootstrap.conf /opt/bootstrap.conf
CMD ["/sbin/my_init", "--", "/scripts/start.py"]