ff71477632
When the user mounts /cron-scripts in the container, this replaced the built-in scripts. The built-in scripts are now shipped in /cron-scripts-builtin now.
18 lines
428 B
Docker
18 lines
428 B
Docker
FROM alpine
|
|
|
|
RUN apk add --no-cache docker-cli bash tini
|
|
|
|
ENV NEXTCLOUD_EXEC_USER=www-data
|
|
ENV NEXTCLOUD_CONTAINER_NAME=
|
|
ENV NEXTCLOUD_PROJECT_NAME=
|
|
ENV NEXTCLOUD_CRON_MINUTE_INTERVAL=15
|
|
ENV NEXTCLOUD_EXEC_SHELL=bash
|
|
ENV NEXTCLOUD_EXEC_SHELL_ARGS=-c
|
|
|
|
COPY scripts/*.sh /
|
|
COPY scripts/cron-scripts-builtin /cron-scripts-builtin
|
|
|
|
ENTRYPOINT ["tini", "--", "/entrypoint.sh"]
|
|
|
|
HEALTHCHECK --timeout=5s \
|
|
CMD ["/healthcheck.sh"]
|