Matrix Docker Ansible eploy
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 

24 行
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