mirror of
https://github.com/ggogel/seafile-containerized.git
synced 2024-11-16 17:05:32 +00:00
27 lines
794 B
Docker
27 lines
794 B
Docker
FROM seafileltd/base-mc:18.04
|
|
|
|
# For suport set local time zone.
|
|
RUN export DEBIAN_FRONTEND=noninteractive && apt-get update && apt-get install tzdata -y
|
|
|
|
WORKDIR /opt/seafile
|
|
|
|
RUN mkdir -p /etc/my_init.d
|
|
|
|
ENV SEAFILE_VERSION=7.0.4 SEAFILE_SERVER=seafile-server
|
|
|
|
RUN mkdir -p /opt/seafile/ && \
|
|
curl -sSL -o - https://download.seadrive.org/seafile-server_${SEAFILE_VERSION}_x86-64.tar.gz \
|
|
| tar xzf - -C /opt/seafile/
|
|
|
|
# For using TLS connection to LDAP/AD server with docker-ce.
|
|
RUN find /opt/seafile/ \( -name "liblber-*" -o -name "libldap-*" -o -name "libldap_r*" -o -name "libsasl2.so*" \) -delete
|
|
|
|
ADD scripts/create_data_links.sh /etc/my_init.d/01_create_data_links.sh
|
|
|
|
COPY scripts /scripts
|
|
COPY templates /templates
|
|
|
|
EXPOSE 80
|
|
|
|
CMD ["/sbin/my_init", "--", "/scripts/start.py"]
|