mirror of
https://github.com/nextcloud/docker.git
synced 2024-11-06 06:14:57 +01:00
11 lines
226 B
Text
11 lines
226 B
Text
|
FROM nextcloud:fpm-alpine
|
||
|
|
||
|
RUN apk add --no-cache supervisor \
|
||
|
&& mkdir /var/log/supervisord /var/run/supervisord
|
||
|
|
||
|
COPY supervisord.conf /etc/supervisor/supervisord.conf
|
||
|
|
||
|
ENV NEXTCLOUD_UPDATE=1
|
||
|
|
||
|
CMD ["/usr/bin/supervisord"]
|