working install of oasis21 infra

This commit is contained in:
root
2022-07-12 12:20:42 +02:00
parent e53a26bd2e
commit d54d279570
5 changed files with 56 additions and 176 deletions

15
nextcloud/dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM nextcloud:23.0.6-apache
ARG VERSION
RUN apt-get update && apt-get install -y \
supervisor \
libmagickcore-6.q16-6-extra \
&& rm -rf /var/lib/apt/lists/* \
&& mkdir /var/log/supervisord /var/run/supervisord
COPY supervisord.conf /
ENV NEXTCLOUD_UPDATE=1
CMD ["/usr/bin/supervisord", "-c", "/supervisord.conf"]