IF YOU WOULD LIKE TO GET AN ACCOUNT, please write an email to s dot adaszewski at gmail dot com. User accounts are meant only to report issues and/or generate pull requests. This is a purpose-specific Git hosting for ADARED projects. Thank you for your understanding!
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.

31 lines
454B

  1. prebuild:
  2. - python3 getmetadata.py
  3. volumes:
  4. certbot-data: {}
  5. certbot-webroot: {}
  6. images:
  7. nginx-http: ./nginx-http
  8. nginx-https: ./nginx-https
  9. certbot: ./certbot
  10. jails:
  11. nginx-http:
  12. image: nginx-http
  13. mounts:
  14. certbot-webroot: /srv/certbot-webroot
  15. certbot:
  16. image: certbot
  17. depend: nginx-http
  18. mounts:
  19. certbot-data: /
  20. nginx-https:
  21. image: nginx-https
  22. depend: certbot