1
0
Fork 0
This repository has been archived on 2024-07-08. You can view files and clone it, but cannot push or open issues or pull requests.
nextcloud-tweak/Dockerfile

12 lines
407 B
Docker
Raw Normal View History

2021-08-28 23:50:44 +00:00
FROM nextcloud:22.1.0-apache
2021-08-28 21:41:11 +00:00
COPY httpd/000-default.conf /etc/apache2/sites-available/000-default.conf
2021-08-28 23:50:44 +00:00
COPY supervisord/supervisord.conf /opt/supervisord.conf
2021-08-28 21:41:11 +00:00
# install cron
2021-08-28 23:50:44 +00:00
RUN apt-get update \
&& apt-get install -y supervisor libmagickcore-6.q16-6-extra \
&& mkdir /var/log/supervisord /var/run/supervisord \
&& rm -rf /var/lib/apt/lists/*
CMD ["/usr/bin/supervisord", "-c", "/opt/supervisord.conf"]