Skip to content
Dockerfile 455 B
Newer Older
ARG VERSION=latest
FROM nextcloud:$VERSION
WORKDIR /usr/src/nextcloud/
RUN chown -R 33:33 /usr/src/nextcloud/apps
RUN chown -R 33:33 /usr/src/nextcloud/data
COPY scripts/apps.sh scripts/apps.sh
COPY config/* /usr/src/nextcloud/config/
RUN ./scripts/apps.sh instal
RUN ./scripts/apps.sh remove
RUN chown -R 33:33 /usr/src/nextcloud/custom_apps
RUN chown -R 33:33 /usr/src/nextcloud/config
COPY scripts scripts
USER www-data
ENTRYPOINT [""]
CMD ["php-fpm"]