|
@@ -5,11 +5,11 @@ LABEL maintainer="tomishinets.v@sdsys.ru"
|
|
|
COPY nginx.repo /etc/yum.repos.d/nginx.repo
|
|
|
COPY generate.sh \
|
|
|
renewal.sh \
|
|
|
- docker-entrypoint.sh \
|
|
|
+ healthcheck.sh \
|
|
|
/tmp/
|
|
|
|
|
|
RUN yum install -y epel-release \
|
|
|
- && yum install -y yum-utils python2-certbot-nginx openssl ca-certificates cronie mailx nginx \
|
|
|
+ && yum install -y yum-utils python2-certbot-nginx openssl ca-certificates mailx nginx \
|
|
|
&& yum install -y https://centos7.iuscommunity.org/ius-release.rpm \
|
|
|
&& yum install -y git2u \
|
|
|
&& yum clean all \
|
|
@@ -19,7 +19,7 @@ RUN yum install -y epel-release \
|
|
|
&& touch /var/log/letsencrypt/letsencrypt.log \
|
|
|
&& chmod +x /tmp/generate.sh \
|
|
|
&& chmod +x /tmp/renewal.sh \
|
|
|
- && chmod +x /tmp/docker-entrypoint.sh \
|
|
|
+ && chmod +x /tmp/healthcheck.sh \
|
|
|
# && ln -sf /dev/stdout /var/log/letsencrypt/letsencrypt.log \
|
|
|
&& ln -sf /dev/stdout /var/log/nginx/access.log \
|
|
|
&& ln -sf /dev/stderr /var/log/nginx/error.log
|
|
@@ -27,6 +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
|
|
|
EXPOSE 80
|
|
|
CMD ["nginx", "-g", "daemon off;"]
|