You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- FROM debian:buster
-
- RUN apt-get update && apt-get install -y haproxy cron certbot
-
- RUN mkdir -p /run/haproxy
-
- COPY haproxy.cfg /etc/haproxy/haproxy.cfg
- COPY haproxy_letsencrypt.cfg /etc/haproxy/haproxy_letsencrypt.cfg
-
- COPY startup.sh /usr/local/bin/
- RUN chmod +x /usr/local/bin/startup.sh
-
- COPY letsencrypt.cron /usr/local/bin/
- RUN chmod +x /usr/local/bin/letsencrypt.cron
-
- #CMD haproxy -f /etc/haproxy/haproxy.cfg
- CMD /usr/local/bin/startup.sh
|