Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

17 rindas
445B

  1. FROM debian:buster
  2. RUN apt-get update && apt-get install -y haproxy cron certbot
  3. RUN mkdir -p /run/haproxy
  4. COPY haproxy.cfg /etc/haproxy/haproxy.cfg
  5. COPY haproxy_letsencrypt.cfg /etc/haproxy/haproxy_letsencrypt.cfg
  6. COPY startup.sh /usr/local/bin/
  7. RUN chmod +x /usr/local/bin/startup.sh
  8. COPY letsencrypt.cron /usr/local/bin/
  9. RUN chmod +x /usr/local/bin/letsencrypt.cron
  10. #CMD haproxy -f /etc/haproxy/haproxy.cfg
  11. CMD /usr/local/bin/startup.sh