Files
tp/certbot/Dockerfile
T
valitovgaziz 1a2cfa2104 modified: certbot/Dockerfile
Change Dockerfile for new files renewEsysite102.sh
2025-07-19 17:34:54 +05:00

18 lines
474 B
Docker

FROM certbot/certbot
# Создаем директории для конфигов
RUN mkdir -p /etc/letsencrypt/config
# Копируем конфигурационные файлы
COPY scripts/ /opt/
# Устанавливаем права
RUN chmod +x /opt/init-certbot.sh
RUN chmod +x /opt/checkRenewCerts.sh
RUN chmod +x /opt/renewEasysite102.sh
RUN chmod +x /opt/renewValitovGazizCert.sh
RUN chmod +x /opt/renewYalarbaCert.sh
ENTRYPOINT ["/opt/init-certbot.sh"]