Matrix Docker Ansible eploy
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 

28 Zeilen
535 B

  1. # SPDX-FileCopyrightText: 2024 MDAD Team and contributors
  2. #
  3. # SPDX-License-Identifier: AGPL-3.0-or-later
  4. ---
  5. version: "3.9"
  6. services:
  7. caddy:
  8. image: caddy:2.5.1-alpine
  9. networks:
  10. # add this, so that caddy can talk to the playbook-managed-traefik
  11. - traefik
  12. ports:
  13. - "80:80"
  14. - "443:443"
  15. - "8448:8448"
  16. volumes:
  17. - ./Caddyfile:/etc/caddy/Caddyfile
  18. # - ./site:/var/www
  19. # Other configurations …
  20. networks:
  21. # add this as well
  22. traefik:
  23. name: traefik
  24. external: true