docker-compose_aem-6.3-aws.yml 586 B

12345678910111213141516171819202122232425
  1. version: '3'
  2. services:
  3. dispatcher-publish-nonssl:
  4. image: nexus.sebastianfisahn.com/aem-dispatcher-publisher:latest
  5. stdin_open: true
  6. tty: true
  7. ports:
  8. - "80:80"
  9. - "443:443"
  10. links:
  11. - aem-publisher:aem-publisher
  12. aem-publisher:
  13. image: nexus.sebastianfisahn.com/aem-publisher:v6.3
  14. stdin_open: true
  15. tty: true
  16. ports:
  17. - "4503:4503"
  18. aem-author:
  19. image: nexus.sebastianfisahn.com/aem-author:v6.3
  20. stdin_open: true
  21. tty: true
  22. ports:
  23. - "4502:4502"
  24. links:
  25. - aem-publisher:aem-publisher