This repository has been archived on 2023-02-05. You can view files and clone it, but cannot push or open issues or pull requests.
loki/certbot/Dockerfile

10 lines
146 B
Docker
Raw Normal View History

2017-09-17 02:49:55 +02:00
FROM debian
RUN apt update && apt install -y certbot cron
ADD certbot.cron /etc/cron.d/certbot
VOLUME ["/etc/letsencrypt"]
CMD ["cron", "-f"]