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
2017-09-17 13:01:11 +01:00

12 lines
243 B
Docker

FROM debian
RUN apt update && apt install -y certbot cron supervisor
ADD certbot.cron /etc/cron.d/certbot
VOLUME ["/etc/letsencrypt"]
COPY supervisord.conf /etc/supervisord.conf
CMD ["/usr/bin/supervisord", "-c", "/etc/supervisord.conf"]