25 lines
913 B
Docker
25 lines
913 B
Docker
FROM nextcloud:stable-apache
|
|
#needed for some reason
|
|
ENV NEXTCLOUD_UPDATE=1
|
|
|
|
|
|
RUN sed -i 's@deb.debian.org@apt-cache.lan/deb.debian.org@g' /etc/apt/sources.list && \
|
|
sed -i 's@security.debian.org@apt-cache.lan/security.debian.org@g' /etc/apt/sources.list && \
|
|
apt-get update && apt-get install -y \
|
|
vim screen dnsutils procps nmap bash iputils-ping bash && \
|
|
apt-get clean -y && \
|
|
rm -rf /var/lib/apt/lists/* && \
|
|
rm -rf /var/cache/apt/*
|
|
|
|
RUN touch /usr/src/nextcloud/data/.ocdata
|
|
COPY config.php /usr/src/nextcloud/config/
|
|
#COPY htaccess-data /usr/src/nextcloud/data/.htaccess
|
|
COPY apache-default-vhost.conf /etc/apache2/sites-available/000-default.conf
|
|
RUN mv /usr/src/nextcloud/.htaccess /usr/src/nextcloud/.htaccess.bak
|
|
RUN mv /usr/src/nextcloud/config/.htaccess /usr/src/nextcloud/config/.htaccess.bak
|
|
|
|
#install ca.crt update script to the container
|
|
|
|
COPY post-start.sh /
|
|
RUN chmod +x /post-start.sh
|