This repository has been archived on 2023-02-05. You can view files and clone it, but cannot push or open issues or pull requests.
loki/nextcloud/Dockerfile

16 lines
326 B
Docker
Raw Normal View History

FROM nextcloud:fpm
2018-12-11 20:31:31 +01:00
ENV DEBIAN_FRONTEND noninteractive
2018-12-11 21:34:04 +01:00
RUN apt-get update && apt-get -y upgrade
2018-12-11 22:11:50 +01:00
RUN apt-get -y install supervisor
2018-12-11 21:34:04 +01:00
RUN rm -rf /var/lib/apt/lists/*
2018-12-11 22:11:50 +01:00
RUN mkdir /var/log/supervisord /var/run/supervisord
COPY supervisord.conf /etc/supervisor/supervisord.conf
2018-12-18 21:18:02 +01:00
ENV NEXTCLOUD_UPDATE=1
CMD ["/usr/bin/supervisord"]