Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- 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
|