Matrix Docker Ansible eploy
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 

24 righe
429 B

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