File tree Expand file tree Collapse file tree 4 files changed +9
-1
lines changed Expand file tree Collapse file tree 4 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 4747/ex_app/src
4848/ex_app_scripts
4949/translationtool.phar
50+ /healthcheck.sh
5051/client
5152tests
Original file line number Diff line number Diff line change @@ -83,9 +83,13 @@ ADD /ex_app/j[s] /ex_app/js
8383ADD /ex_app/l10[n] /ex_app/l10n
8484ADD /ex_app/li[b] /ex_app/lib
8585
86+ COPY --chmod=775 healthcheck.sh /
87+
8688WORKDIR /Visionatrix
8789
8890CMD ["/bin/sh" , \
8991 "/ex_app_scripts/entrypoint.sh" , \
9092 "/ex_app/lib/main.py" , \
9193 "/ex_app_scripts/run_visionatrix.sh" ]
94+
95+ HEALTHCHECK --interval=2s --timeout=2s --retries=300 CMD /healthcheck.sh
Original file line number Diff line number Diff line change 1818 @echo " build-push-rocm builds ROCM image and uploads it to ghcr.io"
1919 @echo " "
2020 @echo " > Next commands are only for the dev environment with nextcloud-docker-dev!"
21- @echo " > They should run from the host you are developing on(with activated venv) and not in the container with Nextcloud!"
21+ @echo " > They must be run from the host you are developing on, not in a Nextcloud container !"
2222 @echo " "
2323 @echo " run30 installs $( APP_NAME) for Nextcloud 30"
2424 @echo " run installs $( APP_NAME) for Nextcloud Latest"
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ exit 0
You can’t perform that action at this time.
0 commit comments