faa77b77c8
It is now possible to override and explicitly specify the shell you would like used when executing cron tasks. This is accomplished with the NEXTCLOUD_EXEC_SHELL environment variable, which defaults to bash. You can also override and customize the arguments provided to that shell executable via NEXTCLOUD_EXEC_SHELL_ARGS, which defaults to "-c". See documentation for more detail and examples. Fixes #6
18 lines
412 B
Docker
18 lines
412 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 /cron-scripts
|
|
|
|
ENTRYPOINT ["tini", "--", "/entrypoint.sh"]
|
|
|
|
HEALTHCHECK --timeout=5s \
|
|
CMD ["/healthcheck.sh"]
|