mirror of
https://github.com/nextcloud/docker.git
synced 2025-02-08 04:08:26 +01:00
10 lines
226 B
Docker
10 lines
226 B
Docker
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"]
|