Browse Source

Удалил лишнее. Увеличил интервал healthcheck, чтобы успевал проходить dry-run

OBT-SYSADM\tomishinets 6 years ago
parent
commit
78212ed2d4
2 changed files with 1 additions and 9 deletions
  1. 1 2
      Dockerfile
  2. 0 7
      docker-entrypoint.sh

+ 1 - 2
Dockerfile

@@ -27,7 +27,6 @@ RUN yum install -y epel-release \
 
 COPY default.conf /etc/nginx/conf.d/
 
-#ENTRYPOINT ["/tmp/docker-entrypoint.sh"]
-HEALTHCHECK --start-period=30s --interval=15s --timeout=5s --retries=2 CMD /tmp/healthcheck.sh
+HEALTHCHECK --start-period=30s --interval=120s --timeout=5s --retries=2 CMD /tmp/healthcheck.sh
 EXPOSE 80
 CMD ["nginx", "-g", "daemon off;"]

+ 0 - 7
docker-entrypoint.sh

@@ -1,7 +0,0 @@
-#!/usr/bin/env bash
-
-# Запускаем crontab и добавляем задание по обновлению сертификатов и ключей
-/usr/sbin/crond
-echo "0 0 * * * /tmp/renewal.sh" | crontab -
-
-exec "$@"